body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.top-section {
    position: relative;
    padding: 20px;
    text-align: center;
}

.top-left-image {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 100px;
    height: auto;
}

.title {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    margin: 20px 0;
    color: #333;
}

.navigation {
    background-color: #808080;
    padding: 15px 0;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 30px;
    position: static;
    transform: none;
    flex-direction: row;
}

.navigation a {
    color: white;
    text-decoration: none;
    padding: 0 20px;
    font-size: 16px;
    display: inline;
}

.navigation a:hover {
    text-decoration: underline;
}

.main-content {
    text-align: center;
    padding: 20px;
}

.center-image {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* G logo styles at bottom */
.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.circle {
    position: relative;
    width: 80px;
    height: 60px;
    background: transparent;
    border: 2px solid yellow;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.letter {
    color: yellow;
    font-size: 42px;
    font-family: 'Carattere', cursive;
    font-weight: normal;
}

.dots {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.dot {
    width: 6px;
    height: 6px;
    background: yellow;
    border-radius: 50%;
}