*
{
    padding: 0%;
    margin: 0%;
    font-family: "JetBrains Mono";
}

.background-clips
{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.Content
{
    background-color: rgba(18, 19, 15, .8);
    color: #eae6e5;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.Title
{
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.Selection
{
    position: absolute;
    top:180;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;   

}

.Selection a
{
    margin-right: 30px; 
}

a
{
    text-decoration: none;
    color: #eae6e5;
    transition: color 0.2s;
    transition: font-size 0.2s;
}

a:hover
{
    transition: color 0.3s;
    transition: font-size 0.3s;
    font-size: 27px;
    color: #8FCB9B;
}

@media (min-aspect-ratio:16/9)
{
    .background-clips
    {
        width: 100%;
        height: auto;
    }
}


@media (max-aspect-ratio:16/9)
{
    .background-clips
    {
        width: auto;
        height: 100%;
    }
}

@media screen and (max-width: 600px) 
{
    .Title
    {
        font-size: 50px;
    }

}