@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap');

* {
    padding: 0;
    margin: 0;
    top: 0;
    overflow-y: hidden;
}

nav {
    background-color: black;
    padding: 2%;
    display: flex;
    justify-content: space-between;
}


nav h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 150%;
    color: #F3F8FC;
}

nav a, a:link, a:visited {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    color: #F3F8FC;
    text-decoration: none;
    padding: 1% 3%;
    border-radius: 5px;
    margin-left: 2%;
}

.links {
    display: flex;
    justify-content: right;
    width: 10%;
}

.back {
    width: 200%;
}

.main_page {
    background-color: black;
    background-image: url("static/death.gif");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100vh;
}

.filler {
    padding-top: 2%;
}

.text-box {
    width: 50%;
    height: 35%;
    margin-left: 25%;
    margin-right: 25%;
    background-image: url("static/textbox.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.text-box p {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 175%;
    padding: 5%;
}