/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*
@font-face { font-family: ""; src: url(""); }
*/
@font-face { font-family: "ts"; src: url("../assets/fonts/Tagesschrift-Regular.ttf"); }
@font-face { font-family: "won"; src: url("../assets/fonts/Wonderia.otf"); }
@font-face { font-family: "tos"; src: url("../assets/fonts/The Oriental Silence.ttf"); }


/* Styling */
html {
    height: 100%;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body {
    min-height: auto;
    background-color: rgb(37, 37, 37);
    background-image: url("../assets/bgs/bg4.png");
    background-size: cover;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.homeBtn {
    position: absolute;
    top: 12px;
    left: 16px;
    font-family: "ts";
    text-decoration: none;
    font-size: 26px;
    border: 2px solid;
    padding: 10px 15px;
    background-color: rgb(19, 19, 19);
    color: rgb(255, 236, 187);
}

.container {
    margin-top: 30px;
    background-color: rgb(14, 14, 14);
    background-image: url("assets/pics/overlay3.png");
    width: 75%;
    min-height: auto;
    height: auto;
    margin-bottom: 18px;
}

h1 {
    margin-top: 35px;
    font-family: "won";
    font-size: 126px;
    color: rgb(55, 151, 255);
    text-shadow: 2px 2px 4px rgb(41, 41, 41),
    -2px -2px 3px rgb(41, 41, 41);
    filter:drop-shadow(0 0 25px rgb(125, 125, 125));
}

.nav-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 45px;
}

.nav-btn {
    text-decoration: none;
    border: solid 3px;
    border-radius: 4px;
    font-family: "ts";
    font-size: 32px;
    background-color: rgb(41, 41, 41);
    width: 35%;
    padding: 15px;
    color: rgb(207, 151, 10);
}

.contact-info {
    margin-bottom: 30px;
}

.made-by {
    font-family: "tos";
    font-size: 36px;
    color: rgb(219, 219, 219);
    margin-bottom: 6px;
}

.email {
    font-family: "ts";
    font-size: 22px;
    color: rgb(219, 219, 219);
    margin-bottom: 35px;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        min-height: auto;
    }

    .homeBtn {
        font-size: 22px;
        padding: 8px 12px;
        top: 14px;
        left: 12px;
    }

    .container {
        margin-top: 100px;
        width: 90%;
    }

    h1 {
        font-size: 74px;
    }

    .nav-grid {
        margin-top: 26px;
        gap: 32px;
        margin-bottom: 36px;
    }

    .nav-btn {
        background-color: rgb(40, 40, 40);
        width: 60%;
        font-size: 30px;
        padding: 14px;
    }

    .made-by {
        font-size: 32px;
        margin-bottom: 4px;
    }

    .email {
        font-size: 20px;
    }
}

@media (min-width: 601px) and (max-width: 1100px) {
    body {
        height: auto;
        background-image: url("../assets/bgs/bg4.png");
        background-repeat: repeat;
        background-size: auto;
        background-attachment: scroll;
    }

    .homeBtn {
        font-size: 26px;
        padding: 12px 18px;
        top: 20px;
        left: 16px;
    }

    .container {
        margin-top: 160px;
        width: 75%;
        height: auto;
    }

    h1 {
        margin-top: 60px;
        font-size: 118px;
        margin-bottom: 35px;
    }

    .nav-grid {
        margin-top: 28px;
        gap: 40px;
        margin-bottom: 65px;
    }

    .nav-btn {
        width: 60%;
        font-size: 38px;
        padding: 14px;
    }

    .made-by {
        font-size: 37px;
        margin-bottom: 5px;
    }

    .email {
        font-size: 24px;
        margin-bottom: 80px;
    }
}