* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4 {
    font-family: "Chivo", sans-serif;
}

li, p, a {
    font-family: "Noto Sans", sans-serif;
}

html {
    margin: 0 auto;
}

:root {
    --heading: font-family: "Chivo", sans-serif;
    --text: font-family: "Noto Sans", sans-serif;
}

.container-main {
    height: auto;
    width: 70%;
    margin: 35px auto;
    border: 3px solid black;
    border-radius: 10px;
    padding: 30px;
}

.container-main nav .left h1 {
    font-family: "Chivo", sans-serif;
    font-size: 1.5rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

i {
    font-size: 1.5rem;
}

.links a {
    color: black;
}

.links a:hover {
    color: gray;
    transition: 200ms;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

header h1 {
    font-family: "Chivo", sans-serif;
}

header p {
    font-family: "Noto Sans", sans-serif;
}

.header-h1 {
    font-size: 5rem;
}

.header-p {
    font-size: 2rem;
}

.social-icons {
    display: none;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .container-main {
        height: auto;
        width: 70%;
        margin: 35px auto;
        border: 3px solid black;
        border-radius: 10px;
        padding: 30px;
    }

    .header-h1 {
        font-size: 3rem;
    }

    .header-p {
        font-size: 1.5rem;
    }

    .social-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .social-links {
        display: flex;
        gap: 10px;
    }

    .social-links i {
        font-size: 2.5rem;
    }

    .social-links a  {
        color: black;
    }

    .social-links a:hover {
        color: gray;
    }
}