@keyframes wave {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

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

.container {
    text-align: center;
    animation: wave 2s infinite;
}

.logo {
    width: 150px; /* Adjust size as needed */
    margin-bottom: 20px;
}

.contact-email {
    font-size: 0.8em;
    margin-top: 10px;
}

.contact-email a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: #ccc;
    border-bottom: 1px solid #ccc;
}