body{
    font-family: var(--font-family);
    background-color: #0f0f3b;

}

.content{
    display: flex;
    align-items: center;
    flex-direction: column;

}

.title{
    color: white;

}

.subtitle{
    color: white;

}

.links{
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 2rem;
    list-style: none;

}

.link{
    text-decoration: none;
    list-style: none;
    background-color: #02ffa1;
    border-radius: .5rem;
    color: #141426;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    padding: .5rem;
    text-align: center;
    border: none;
}

.link:hover{
    background-color: #141426;
    color: #02ffa1;
    border: solid 2px #02ffa1;

}

