body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0a0a0a;
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1b1b1b;
}

header .logo h1 {
    height: 20px;
    align-items: center;
    text-align: right;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff3d00;
}

.hero {
    background-image: url('screenshot1.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-buttons a {
    text-decoration: none;
    padding: 10px 20px;
    margin: 5px;
    background-color: #ff3d00;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-buttons a:hover {
    background-color: #d32f2f;
}

.about, .features, .media {
    padding: 60px 20px;
    text-align: center;
    background-color: #121212;
}

.about h2, .features h2, .media h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p, .features ul, .media .gallery {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #cccccc;
}

.about ul {
    list-style-type: disc;
    padding-left: 40px;
    text-align: center;
}

.about ul li {
    margin: 10px 0;
}

.about li{
text-align: center;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #1b1b1b;
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
}

footer .social-links a {
    text-decoration: none;
    color: #ff3d00;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #ffffff;
}
