body {
    background-color: #E5E6E3;
    font-family: 'Arial', sans-serif;
    color: #000;
    margin: 0;
}

.header {
    background-color: #ffcc00;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 4px solid #FF3366;
}

.logo-container {
    position: absolute;
    left: 20px;
    top: calc(50% + 24px);
    transform: translateY(-50%);
    background-color: #ffcc00;
    padding: 15px;
    border-radius: 50%;
    border: 3px solid #FF3366;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header img {
    width: 140px; /* Increased by 6px */
    height: 140px; /* Increased by 6px */
    border-radius: 50%;
}

.header h1 {
    font-family: 'Pacifico', cursive;
    font-size: 48px;
    color: #FF3366;
    text-shadow: 3px 3px #00A1E4;
    margin: 0;
}

.top-menu {
    background-color: #00A1E4;
    overflow: hidden;
    text-align: center;
}

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