html, body {
    margin: 0;
    padding: 0;
    background: url("background.png") no-repeat center center fixed;
    background-size: cover;
    font-family: Verdana;
    min-height: 100vh;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 30px;
}

.main-box {
    background: rgba(86, 91, 168, 1);
    padding: 24px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    border: 10px solid white;
}

.news-image {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.main-box h1 {
    font-size: 1.8em;
    color: white;
    margin-bottom: 20px;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu a {
    text-decoration: none;
    color: white;
    background: #454887;
    padding: 10px;
    font-size: 1.1em;
    transition: 0.3s ease;
}

.menu a:hover {
    background: #505396;
}