@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    font-family: "Roboto", sans-serif;
}

.logo img {
    width: 180px;
    height: auto;
}

.nav {
    color: white;
    /* text-decoration: none; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    background-color: #181716;
}

.nav a {
    text-decoration: none;
    color: white;
}

.content a {
    text-decoration: none;
}

.links {
    display: flex;
    gap: 30px;
}

.logo {
    width: 190px;
    height: auto;
}

.sectionone {
    color: white;
    display: flex;
    padding-left: 20px;
    padding: 50px;
}

a {
    cursor: pointer;
}

h1 {
    margin-bottom: 10px;
}

h2 {
    margin: 8px 0;
}

.smarty {
    margin: 50px 0;
}

@media (max-width:700px) {
    .sectionone {
        padding: 25px;
    }

    .logo {
        width: 105px;
        height: auto;
    }

    .smarty{
        margin: 0;
    }
}