@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================
   GLOBAL STYLES
========================= */

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

body {
    background: #03051d;
    color: rgba(123,199,217,0.9);
    text-shadow: -1px 1px 1px #000000;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
    color: rgba(218,151,125,0.9);
}

a:hover {
    color: rgba(169,110,76,0.9);

}

h1,
h2,
h3 {
    font-family: "Jost", sans-serif;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    color: rgba(218,151,125,0.5);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

h1 {
    font-size: 25px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

b {
    font-weight: 600;
}

/* =========================
   MAIN CONTENT AREA
========================= */

#wrapper {
    width: 900px;
    margin: 0 auto;
    background: #070d28 url('contentbg.png');
    box-shadow: 0 0 100px rgba(123,199,217,0.5);
    overflow: hidden;
}

/* =========================
   HEADER / LOGO
========================= */

#header {
    text-align: center;
}

#header img {
    width: 300px;
    height: 192px;
    margin: 30px 0 15px 0;
    max-width: 100%;
    height: auto;
}

/* =========================
   NAVIGATION
========================= */

#navigation {
    text-align: center;
    margin-bottom: 30px;
}

#navigation a {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin: 0 14px;
    display: inline-block;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

/* underline */
#navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(to right, #ffffff 0%, #6fb3c4 100%);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#navigation a:hover {
    color: rgba(123,199,217,0.9);
}

#navigation a:hover::after {
    transform: scaleX(1);
}

/* =========================
   BODY CONTENT
========================= */

#content {
    padding: 0 50px 50px 50px;
}

#content p {
    margin-bottom: 20px;
}

/* =========================
   FOOTER
========================= */

#footer {
    position: relative;
    width: 900px;
    height: 330px;
}

#footer img {
    display: block;
    width: 900px;
    height: 330px;
}

#footer-text {
    position: absolute;
    width: 870px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    text-shadow: -1px 1px 1px #000000;
    line-height: 16px;
    padding: 5px;
}

/* =========================
   MOBILE / RESPONSIVE
========================= */

@media screen and (max-width: 950px) {

    #wrapper {
        width: 100%;
    }

    #footer {
        width: 100%;
        height: auto;
    }

    #footer img {
        width: 100%;
        height: auto;
    }

    #footer-text {
        width: calc(100% - 30px);
    }

}

@media screen and (max-width: 700px) {

    #navigation a {
        display: block;
        margin: 10px 0;
    }

    #content {
        padding: 0 20px 40px 20px;
    }

}
