body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-image: url(./background.jpeg);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-width: 100vw;
}

.list-box{
    background-color: black;
    color: white;
    padding: 2vw;
    aspect-ratio: 1/1;
    min-width: 30%;
    font-size: 2vw;
}

.list-box h1 {
    text-align: center;
    margin: 0;
    padding: 0 0 1vh 0;
    border-bottom: 3px solid white;
}
.list-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 80%;
}

.list-box a {
    text-align: left;
    display: block;
    margin: auto;
    color: white;
    text-decoration: none;
    width: 80%;
}
.list-box a:after {
    content: '';
    display: block;
    height: 2px;
    width: 0px;
    background: white;
    transition: width .2s ease;
}
.list-box a:hover:after {
    width: 100%;
}

@media screen and (max-aspect-ratio: 1/1) {
    .list-box {
        min-width: 90%;
        min-height: 30%;
        font-size: 4vh;
        aspect-ratio: auto;
    }
    .list-box ul {
        padding: 1vh 0;
        gap: 1vh;
    }
}