body {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.animated-link a {
    color: white;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
    padding: 10px 20px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.animated-link a:hover {
    background-color: white;
    color: black;
    transform: scale(1.1);
}
