@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');


body {
    background-color: #EAEAEA; /* Neutral light grey */
    font-family: 'Arial', sans-serif;
    color: #000;
    margin: 0;
}

.header {
    background-color: #FFB81C; /* Gold */
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 4px solid #000000; /* Black */
}

.logo-container {
    position: absolute;
    left: 20px;
    top: calc(50% + 24px);
    transform: translateY(-50%);
    background-color: #FFB81C; /* Gold */
    padding: 5px;
    border-radius: 50%;
    border: 3px solid #000000; /* Black */
    width: 144px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header img {
    width: 140px; 
    height: 140px; 
    border-radius: 50%;
}

.header h1 {
    font-family: 'Russo One', sans-serif; /* Updated font */
    font-size: 48px;
    color: #000000; /* Black */
    text-shadow: 3px 3px #FFFFFF; /* White */
    margin: 20px 0;
}


.top-menu {
    background-color: #000000; /* Black */
    overflow: hidden;
    text-align: center;
}

.top-menu a {
    display: inline-block;
    color: #FFFFFF; /* White */
    padding: 14px 20px;
    text-decoration: none;
}
