@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playpen+Sans:wght@100..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    color: white;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url(../img/colorful-waves-7404806.jpg);
    background-color: black;
    background-size: cover;
    background-position: center center;
    padding: 10px 8%;
}

html,
body {
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}

header h1 {
    font-size: 2.6em;
}

h2 {
    font-size: 2.2em;
    font-family: 'Playpen Sans';
}

h3 {
    font-size: 1.8em;
    margin: 15px;
}

img {
    width: 100%;
    max-width: max-content;
}

a.back {
    text-decoration: none;
    color: white;
    transition: 0.6s;
}

a.back:hover {
    transition: 0.6s;
    transform: scale(1.2);
}

nav {
    display: flex;
    flex-direction: column;
    font-family: 'Comfortaa';
    margin: 15px;
    justify-content: center;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: white;
    text-align: center;
    border-radius: 25px;
    transition: 0.6s;
    padding: 10px;
    margin: 15px;
}

nav li {
    transition: 0.6s;
    text-align: center;
}

nav li:hover {
    transition: 0.6s;
    transform: scale(1.2);
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    font-size: 1.3em;
    margin: 5px;
    padding: 5px;
}

article.footer {
    position: fixed;
    bottom: 0.4%;
    display: none;
}

@media(min-width:1000px) {
    nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    header{
        height: 100%;
    }
}

@media(min-width:1300px) {
    article.footer {
        display: block;
    }
}

::selection {
    background-color: #FFC107;
    color: black;
}

::-moz-selection {
    background-color: #FFC107;
    color: black;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FFC107;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(1, 155, 220);
}