@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..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=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;
    background-image: url(../img/fog-3927511.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8%;
}

html,
body,
header {
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}

header h1 {
    font-size: 2.6em;
}

img {
    width: 100%;
    max-width: max-content;
}

nav {
    display: flex;
    flex-direction: column;
    font-family: 'Comfortaa';
    margin: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    text-align: center;
    background-color: rgba(64, 64, 64, 0.653);
    border-radius: 25px;
    transition: 0.6s;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.575);
    margin: 18px;
}

nav a:hover {
    transition: 0.6s;
    transform: scale(1.1);
    background-color: rgb(91, 91, 91);
}

nav a img {
    border-radius: 25px;
}

article.footer {
    position: fixed;
    bottom: 2%;
}

@media(min-width:860px) {
    nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media(max-width: 860px) {
    article.footer {
        display: none;
    }

    body{
        background-image: url(../img/fog-5091138.jpg), url(../img/fog-5091138.jpg);
        background-repeat: no-repeat, repeat;
        background-size: cover, auto;
        background-position: center center, left center;
        background-attachment: fixed;
        background-blend-mode: multiply;
    }
}