﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;

    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.main-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials img {
    width: 48px;
    height: 48px;
    transition: transform 0.2s ease;
}

.socials img:hover {
    transform: scale(1.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}