* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #2d0414;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

h1 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

.image-container {
    position: relative;
    width: 80%;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.image-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transition-delay: 0.5s;
    width: 100%;
    max-width: 600px;
    flex-wrap: wrap;
}

.social-links.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    color: #2d0414;
    font-weight: bold;
    background-color: #edd7b5;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.social-link:hover {
    background-color: white;
    transform: translateY(-3px);
}

.social-link svg {
    margin-right: 8px;
}

footer {
    background-color: #2d0414;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(237, 215, 181, 0.3);
}

.footer-content {
    color: #edd7b5;
}

.developer {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.developer a {
    color: #edd7b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .image-container {
        width: 95%;
    }
    
    .social-links {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .social-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}