body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: url('stars-background.png') no-repeat center center fixed;
    background-size: cover;
}

header {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.6);
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.menu li:last-child::after {
    content: "";
}

.projects {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.project {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin: 15px;
    width: 250px;
}

.project a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.project a:hover {
    color: #00ccff;
    text-decoration: underline;
}

.project img {
    width: 100%;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    margin-top: 30px;
}

/* Добавим стили для секции новости */
#news {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-top: 40px;
    color: white;
}

#news h2 {
    margin-bottom: 15px;
     text-align: center;
    
}

#news p {
    line-height: 1.6;
}

h3 {
    text-align: center;
    
}

