html{
    width: 100%;
    height: 100%;
}


body{
    width: 100%;
    height: 100%;
    margin: 0;
    justify-items: center;
    align-items: center;
    background-color: #1f1f1f;
    color: white;
}

.container{
    width: 30%;
    height: 250px;
    background-color:#292929;
    display: flex;
    flex-direction: row;
    gap: 20px;
    border-radius: 20px;

    padding: 10px;
    overflow-y: hidden;
    overflow-x: visible;
    justify-content: center;
    align-items: center;
}

.card{
    display: flex;
    flex-direction: column;
    width: 200px;
    border-radius: 35px 35px 0 0;

    justify-items: center;
    align-items: center;
    padding: 5px;
    background-color: #757575;
}

.card:hover{
    opacity: 90%;
    background-color: #9b9b9b;
}

.link-logo{
    width: 195px;
}

.link-label{
    font-size: xx-large;
    font-family: fantasy;
}

a{
    text-decoration: none;
}