body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden;
}

a {
    text-decoration: underline;
    color: #89e7ff;
}

h1, h2, p {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation-delay: 0.5s;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #89e7ff;
    animation-delay: 1s;
}

p {
    animation-delay: 1.5s;
}

.github-logo {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.5s;
    margin-top: 20px;
}

.github-logo img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.github-logo img:hover {
    transform: scale(1.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}