.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5vh;
    
}

.link {
    height: 2.75rem;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.5rem 0;
    border-radius: 15px;
    text-decoration: none !important;
}

.link span {
    width: 80%;
    text-align: center;
}

.link img {
    height: 2rem;
    aspect-ratio: 1;
}

.linkIcon {
    height: 2rem !important;
    aspect-ratio: 1;
}

.link:nth-child(odd) {
    background: linear-gradient(90deg, rgba(241, 241, 241, 0.1) 30%, rgba(113, 113, 113, 0.3) 100%), #EBC7E8;
    color: white;
}

.link:nth-child(even) {
    background: linear-gradient(90deg, rgba(241, 241, 241, 0.1) 30%, rgba(113, 113, 113, 0.3) 100%), #BFACE0;
    color: white;
}

.link:hover {
    filter: drop-shadow(0px 5px 1px rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .link {
        width: 95vw;
    }

    .link:hover {
        transform: scale(1.01);
    }
}