body {
    background: url('tile.png');
    background-repeat: repeat;
    margin: 0px;
    padding: 0px;
}

.modalcontainer {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    color: black;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    flex-wrap: wrap;
    justify-content: space-around;
    transition: opacity 0.2s;
}

.modal {
    background-size: cover;
    background-position: center;
    height: 75%;
    max-height: 800px;
    aspect-ratio: 1 / 1;
    margin: auto;
}

div.container {
    min-width: 400px;
    max-width: 1280px;
    margin: 10px auto;
    height: calc(100% - 70px);
    border-radius: 25px;
    background-color: rgba(9, 3, 9, 0.8);
    overflow: auto;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}


div.box {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin: 10px;
    overflow: auto;
    background-color: #090309;
}

div.wide {
    width: 400px;
}

div.tall {
    height: 400px;
}

div.image {
    background-size: cover;
    background-position: center;
}

h1,
p {
    color: white;
    font-family: Arial, sans-serif;
    padding: 10px;
    text-align: center;
}

h1 {
    font-size: 16pt;
}

::-webkit-scrollbar {
    width: 20px;
    position: relative;
    left: -10px;
}

::-webkit-scrollbar-track {
    background: #090309;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #301030;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #602060;
}