@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Chivo:ital,wght@0,100..900;1,100..900&family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: radial-gradient(circle, #4997be 10%, #E6E8EF);
    background-blend-mode: screen;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: auto;
    margin: 0;
    padding: 0;
    color: #141415;
}

h1, h2 {
    font-family: 'Exo 2', sans-serif;
    font-style: italic;
}

h1 {
    font-size: 50px;
    color: #fab804;
    text-shadow: -1px 1px 0 #000,
    1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
    margin: 10px 20px;
    text-align: center;
}

#main-title {
    font-size: 100px;
    width: 33vw;
}

h2 {
    font-size: 40px;
}

p, a, li {
    font-family: 'Chivo', sans-serif;
}

nav > ul {
    list-style-type: none;
}

nav {
    border-bottom: 2px solid black;
    margin: 0;
}

nav > ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 50px;
}

nav > ul > li {
    padding: 0 20px;
}

a:hover {
    cursor: pointer;
    background-image: radial-gradient(circle, rgb(236, 180, 96) 30%,  rgba(190,143,73, .0));
}

nav > ul > li > a {
    text-transform: uppercase;
    text-decoration: none;
    color: #141415;
}

main {
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    text-align: left;
}

main > ul {
    list-style-image: url(./assets/es-bullet.png);
}

main > ul > li {
    margin-bottom: 10px;
}

main > a {
    font-size: 20px;
    color: #050558;
}

@media (max-width: 1161px){
    main {
        width: 60vw;
    }
}

@media (max-width: 1161px){
    #main-title {
        font-size: 90px;
    }

    h2 {
        font-size: 30px;
    }

    main > a {
        font-size: 15px;
    }
}

@media (max-width: 1039px){
    #main-title {
        font-size: 80px;
    }

    h2 {
        font-size: 25px;
    }
}

@media (max-width: 965px){
    #main-title {
        width: 40vw;
    }
}

@media (max-width: 747px){
    #main-title {
        width: 50vw;
    }

    main {
        width: 70vw;
    }
}

@media (max-width: 575px){
    #main-title {
       font-size: 70px;
    }
}

@media (max-width: 525px){
    #main-title {
        width: 60vw;
    }
}

@media (max-width: 437px){
    #main-title {
        width: 70vw;
    }

    main {
        width: 80vw;
    }
}

@media (max-width: 375px){
    #main-title {
       font-size: 60px;
    }

    h2 {
        font-size: 20px;
     }
}