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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
}

header {
    background-color: #121212;
    padding: 20px;
    text-align: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header h1 {
    color: #ff4444;
    font-size: 2rem;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

header ul li a:hover, .active {
    color: #ff4444;
}

.about {
    text-align: center;
    padding: 50px 20px;
    background-color: #222;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.about h2 {
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 20px;
}

.about .intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.about-content .text {
    flex: 1;
}

.about-content .text h3 {
    color: #ff4444;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-content .text p {
    font-size: 1.1rem;
    color: #ccc;
}

.about-content .image {
    flex: 1;
}

.about-content .image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}


.gallery {
    margin-top: 30px;
}

.gallery h3 {
    color: #ff4444;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.gif-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gif-container img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #121212;
    color: white;
    margin-top: 30px;
}
