body {    
    max-height: 100vh;
    overflow-y: hidden;
}
.center-circle {
    width: 250px;
    height: 250px;
    background-color: #00204A;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.left-section, .right-section {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.left-section { left: 10%; }
.right-section { right: 10%; }
.bottom-box {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    /* background: #7FBF7F; */
    color: black;
    padding: 10px;
    border-radius: 5px;
}
.logo {
    position: absolute;
    bottom: 0.3%;
    right: 0.1%;
}
