/*Spark Yellow: f7c948*/
/*navy: #0f1c2e*/
/*light gray: #d9dde3*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap");

body {
    position: relative; /*SuperPower*/
    min-height: 100vh;
    padding-bottom: 200px;
    font-family: "Motserrat", sans-serif;
}

article div {
    background-color: #d9dde3;
    border-radius: 5px;
}
a {
    text-decoration: none;
    color: white;
}

a:focus,
a:hover {
    color: #f7c948;
    text-decoration: underline;
}

span {
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
}

nav {
    text-align: center;
    background-color: #0f1c2e;
}

nav ul {
    list-style: none;
}

nav li:first-child {
    text-align: left;
}

nav li:first-child a {
    border-radius: 5px;
    background-color: #d9dde3;
    color: #1d1d1f;
}

nav li:first-child a:focus,
nav li:first-child a:hover {
    border-radius: 5px;
    background-color: #f7c948;
    color: #1d1d1f;
    text-decoration: none;
}

nav li:nth-child(2) {
    font-family: "Outfit", sans-serif;
    font-weight: bold;
    font-size: 2em;
    color: #f7c948;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: #0f1c2e;
    color: white;
    min-height: 200px;
}

.bordtop {
    position: relative;
}

.bord {
    border-bottom: 3px dashed #f7c948;
    position: absolute;
    bottom: -2px;
    right: 95%;
    left: -5px;
}

.smooth {
    transition: 0.5s;
}

.btn {
    background-color: #0f1c2e;
    border-radius: 5px;
    color: white;
    text-align: center;
}

.btn:focus,
.btn:hover {
    color: #0f1c2e;
    border-radius: 5px;
    background-color: #f7c948;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    body {
        padding-bottom: 100px;
    }
    footer {
        min-height: 100px;
    }
}

@media screen and (min-width: 992px) {
    nav {
        min-height: 100vh;
    }
    body {
        padding-bottom: 50px;
    }
    footer {
        min-height: 50px;
    }
}
