:root {
    --text-color: #1a1c20;
    --link-color: #4a76ee;
    --background-color: #a8acb3;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    margin: 0 auto;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 80px;
}

nav .left a{
    color: teal;
    font-family: 'Savate', sans-serif;
    font-size: 45px;
    font-weight: 600;
}

nav .right a{
    color: var(--text-color);
    margin: 0 10px;
}

nav .right a:last-child{
    color: var(--background-color);
    background-color: var(--text-color);
    padding: 5px 15px;
    border-radius: 5px;
}

nav .right a span{
    margin-left: 5px;
}

/* SECTION 1: Hero */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    margin: 20px 0;
    margin-bottom: 25px;
}

.hero-section .text h2 {
    color: teal;
    text-align: center;
    font-family: 'Savate', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-section .text p{
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    margin: 10px;
    max-width: 900px;
}

/* SECTION 2: Socials */
.socials-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin: 20px 0;
}

.socials-section .social {
    text-align: center;
    margin: auto;
    width: 60vw;
    max-width: 1200px;
    justify-content: center;
}

.socials-section .social a {
    font-size: 24px;
    color: teal;
    background-color: var(--text-color);
    margin: 20px;
    border-radius: 5px;
    display: block;
    padding: 35px;
}





@media (max-width: 600px) {
    /* NAVBAR */
    nav {
        padding: 0px 20px;

    }

    nav .left a {
        font-size: 32px;
    }

    nav .right a {
        font-size: 22px;
    }

    nav .right a:last-child {
        color: var(--text-color);
        background-color: var(--background-color);
        padding: 0;
    }

    nav .right a span {
        display: none;
    }

    /* SECTION 1: Hero */
    .hero-section{
        padding: 0;

    }

    .hero-section .text h2 {
        font-size: 24px;
    }

    .hero-section .text p {
        font-size: 14px;
    }

    /* SECTION 2: Socials */

    .socials-section .social a{
        font-size: 16px;
        padding: 25px;
    }
}