main {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main h1 {
    color: white;
    text-align: center;
    animation: summon 2s;
    background-color: black;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.cont h1 {
    color: white;
    border-radius: 10px;
    text-align: center;
    border-radius: 0px;
    padding: 0px;
    margin-bottom: 30px;
    margin-top: 10px;
}
.cont {
    color: white;
    background-color: black;
    border-radius: 10px;
    max-width: 100vw;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.cont p {
    max-width: 500px;
    padding: 10px;
}

.library {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 10px;
    margin-top: 10px;
    max-width: 100vw;
    justify-content: center;
    margin-bottom: 20px;
}

.game {
    width: 150px;
    height: 225px;
    position: relative;
    top: 0px;
    left: 0px;
    transition: top 1s, left 1s;
}

.gameframe, .disdis {
    width: 156px;
    height: 231px;
    border-style: dashed;
    border-width: 3px;
    border-color: gray;
    cursor: alias;
    margin-left: 5px;
    margin-right: 5px;
}

.disdis {
    width: 100%;
    height: 200px;
    margin-top: 20px;
}

.gamecat {
    text-align: center;
    display: block;
    align-items: center;
    color: white;
    min-width: 350px;
}

.slider {
    
    width: 100%;
    background-color: black;
    accent-color: blue;
    color: blue;
    margin-bottom: 10px;
}

.bar {
    width: 100%;
    accent-color: greenyellow;
}

.markers {
    width: 12%;
    color: white;
    display: inline;
    background-color: white;
}
.timetext p {
    display: none;
}
.rowcla {
    display: flex;
    flex-direction: row;
}

@keyframes summon {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}