body {
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: underline;
    color: #000;
}

.links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
}

#links {
    width: 600px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

#links a {
    padding: 15px 20px; 
    transition: scale 0.3s ease-in-out, filter 0.3s ease-in-out;
    border: 1px solid #efefef;
    border-radius: 5px;
}

#links a:hover {
    scale: 1.02;
    filter: brightness(0.9);
}