/* element styling */
body {
    background-color: #040C34;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

header {
    background-color: #0A11DA;

}

footer {
    background-color: #0A11DA;
}

main {
    display: flex;
    flex-direction: column;
    align-content: center;
    margin: 0% 15%;
}

main>* {
    flex: 1, 1, 100%;
}

figure>img {
    width: 100%;
}

h1 {
    color: #ebdece;
    font-size: 75px;
    font-family: "Odibee Sans", sans-serif;
    text-align: center;
    margin: 1.5%;
}

h2 {
    color: #D99D64;
    font-size: 65px;
    font-family: "Odibee Sans", sans-serif;
    margin-bottom: 0.5%;
    margin-top: 5%;
    text-align: center;
}

p {
    margin-top: 0%;
    color: #ebdece;
    font-size: 25px;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: left;
}

footer>p {
    margin-top: 0.5%;
    text-align: center;
}

a {
    color: #DAA589;
    font-size: 25px;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: center;
    margin: 2%;
}

figcaption {
    color: #ebdece;
    font-size: 25px;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: center;
}

img {
    display: block;
    margin: 1% auto;
    max-width: 1000px;
}

/* id styling */
#borderImg {
    border: 0.4vw solid black;
}

.format {
    display: flex;
    flex-direction: row;
}

.format>* {
    flex: 1 1 0;
}

.format img {
    width: 100%;
    margin: 0%;
}

/* alternate styling at low screen size */
@media screen and (max-width: 900px) {

    p,
    a,
    figcaption {
        font-size: 15px;
    }

    h1 {
        font-size: 50px
    }

    h2 {
        font-size: 40px;
    }

    .format {
        flex-direction: column;
    }

    main {
        margin: 5%;
    }

}

/* alternate styling at high screen size */
@media screen and (min-width: 1700px) {

    p,
    a,
    figcaption {
        font-size: 35px;
    }

    h1 {
        font-size: 95px
    }

    h2 {
        font-size: 85px;
    }
}

/* fonts */
.odibee-sans-regular {
    font-family: "Odibee Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.plus-jakarta-sans {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}