*
{
    margin: 0;
    padding: 0;
}

body
{
    display: flex;
    justify-content: center;
}

.window
{
    padding-left: 1vw;
    padding-right: 1vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    background: transparent;
    border: 2px solid rgba(0,255,0,.5);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0,255,0,.5);
    display: flex;
    justify-content: center;
    color: rgb(0,255,0);
    text-align: center;
}

#title
{
    position: absolute;
    height: 10vh;
    width: auto;
    top: 1vh;
    overflow: hidden;
}

#title img
{
    height: 95%;
}

#title p
{
    font-size: 9.5vh;
}

#links
{
    position: absolute;
    height: 35vh;
    width: 95vw;
    top: 15vh;
    justify-content: space-evenly;
    overflow-y: scroll;
}

.link
{
    font-size: 1vh;
    height: 20vh;
    padding: 1vw;
    transition-duration: .5s;
}

.link img
{
    height: 85%;
}

.link:hover
{
    font-size: 2vh;
    height: 30vh;
}
