
body {
    background-color: #383838;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.logo-container {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.logo-container:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}
.logo {
    width: 240px;
    height: 240px;
    display: block;
    border-radius: 50%;
    border: 3px solid black;
    object-fit: cover;
    box-sizing: border-box;
}
.links-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}
.link:hover {
    text-decoration: underline;
    transform: translateY(-3px);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    body {
        justify-content: flex-start;
        padding-top: 40px;
    }
    
    .logo {
        width: 180px;
        height: 180px;
    }
    
    .links-container {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .link {
        text-align: center;
        width: 200px;
    }
}
