body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('./background.png') no-repeat center center/cover;
    backdrop-filter: blur(10px);
    font-family: Arial, sans-serif;
    color: #FEFEFE;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    text-align: center;
    backdrop-filter: blur(20px);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), -4px -4px 8px rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.15);
}

.btn img {
    width: 60%;
    height: 60%;
    filter: invert(1);
}

.profile-pic {
    width: 110px;
    height: 110px;
    border-radius: 15px;
}


@media (max-width: 600px) {
    .container {
        width: 85vw;
        padding: 1.2rem 0.5rem;
        border-radius: 12px;
    }

    .github-snake {
        display: none;
    }
}