body {
    background-color: rgb(37, 37, 37);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    margin: 0;
    gap: 3rem;
    height: 100vh;
}

.Seperator{
    background-color: rgb(207, 207, 207);
    width:30rem;
    height:0.2rem
}

.Type {
    all:unset;
    color: white;
    background-color: rgb(71, 71, 71);
    transition: transform 0.2s ease, background-color 0.3s ease;
    padding: 1.3rem 3.3rem;
    border-radius: 0.5rem;
    cursor: pointer;
    user-select: none;
    font-size: 1.6rem;
    font-weight: bold;
}

#Games:active{
    transform: scale(0.9);
}

#Novels:active{
    transform: scale(0.9);
}

.Type:hover{
    background-color: rgb(87, 87, 87);
    transform: scale(1.1);
}

@media (min-width: 150px) and (max-width: 500px) {
    .Type {
        font-size: 1rem;
    }

    .Seperator{
        width:16rem;
    }
}