@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100&display=swap');


* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    color: white;
}

body {
    height: auto;
    width: 100vw;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-auto-columns: auto;
}

.paragraph {
    width: 90%;
    height: auto;
    margin: 2% 0;
}

.paragraph p {
    text-align: justify;
    margin: 0 auto;
    letter-spacing: 1px;
}

.paragraph p a {
    color: lightblue;
}

.image-box {
 width: 90%;
 height: auto;
 margin: 2%;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 grid-auto-columns: auto;
 position: relative;
}

.image-box img {
    width: auto;
    max-width: 80%;
    height: auto;
    max-height: 150px;
}

.image-box p {
    text-align: center;
}

ul {
    position: 0% auto;
}

.image-box h3 {
    letter-spacing: 1px;
    font-size: 1em;
    width: 80%;
    text-align: center;
}

.image-box h1 {
    text-align: center;
}

#last h3 {
    text-align: center;
}

.title {
    margin-top: 20%;
}

.title-body {
    margin: 0%;
}

.line {
    width: 80%;
    height: 1px;
    color: white;
}

#last img {
    cursor: pointer;
}

@media(min-width: 768px) {

    .title h1 {
        font-size: 3em;
    }

    .title-body h1 {
        font-size: 3em;
        margin: 20px 0px;
    }

    .paragraph p {
        font-size: 2em;
    }

    .image-box h3 {
        font-size: 1.5em;
    }
}

@media(min-width: 1024px) {
    .title h1 {
        font-size: 3.5em;
    }

    .title-body h1 {
        margin: 30px 0px;
    }

    .paragraph p {
        font-size: 2.5em;
    }

    .image-box h3 {
        font-size: 2em;
    }
}

@media(min-width: 1200px) {
    .title {
        margin-top: 150px;
        margin-bottom: 20px;
    }

    .title h1 {
        font-size: 4.5em;
    }

    .paragraph {
        margin: 0.5% 0;
    }

    .image-box img {
        max-width: 700px;
    }
    
    .image-box h3 {
        text-align: center;
    }
}