@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}


h1 strong {
    font-family: "Josefin Sans", serif;
    color: rgb(72, 148, 152);
}

header h2 {
    margin: 0px 0px 40px 0px;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: white;
}

nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

nav a {
    margin: 0px 15px;
    border: 1px solid #131424;
    padding: 10px 15px;
}

nav a:hover {
    background-color: #c5bece;
    transition: 0.5s;
}
header {
    background-color: #131424;
    color: white;
    text-align: center;
    padding: 20px 0px;
    margin: 0px;
}

header img {
    width: 100%;
    border-top: 3px solid #c5bece;
    max-width: max-content;
}

.azure {
    display: flex;
    flex-direction: row;
    background-color: #c5bece;
    padding: 40px 60px;
}

.azure h1 {
    margin: 30px 0px;
}

.azure article {
    background-color: #4f6389;
}

.azure a {
    margin-top: 20px;
    padding: 10px 15px;
    border: 1px solid #c5bece;
}

article {
    margin: 5px;
    text-align: justify;
    color: white;
    padding: 30px 60px 30px 30px;
}

.img-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4f6389;
}

.img-section img {
    width: 100%;
    max-width: max-content;
    margin: 5px 0px;

}

#none {
    display: none;
}

.img-box {
    display: flex;
    justify-content: center;
    margin: 0px 40px;
}

#section-3 {
    background-color: #4f6389;
}

footer {
    border-top: 2px solid #c5bece;
    background-color: #4f6389;
    color: white;
    text-align: center;
    padding: 10px 0px;
    margin: 0px;
}


@media (max-width: 768px) {
    header h2 {
        display: none;
    }

    #yes {
        display: none;
    }

    #none {
        display: block;
        border: none;
    }

    nav {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .azure {
        display: block;
        flex-direction: column;
    }

    .img-section {
        flex-direction: column;
        padding: 0px;
    }

    .img-box {
        display: flex;
        justify-content: center;
        margin: 0px 30px;
    }

    .img-section img{
        max-width: 550px;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    header h2 {
        display: none;
    }

    nav {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .azure {
        display: block;
        flex-direction: column;
    }

    .img-section {
        flex-direction: column;
        padding: 0px;
    }

    .img-box {
        display: flex;
        justify-content: center;
        margin: 0px 30px;
    }

    .img-section img{
        max-width: 550px;
    }
}
