body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f2f5;
    font-family: "Segoe UI", Roboto, sans-serif;
}

.circle-container {
    width: 50vmin;
    height: 50vmin;
    border-radius: 50%;
    background-color: purple;
    display: flex;
    flex-direction: column;
    padding: 1%;
    gap: 1%;
    box-sizing: border-box;
}

.locale,
.temperature,
.humidity {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
}

.locale {
    flex: 1;
    clip-path: ellipse(50% 100% at 50% 100%);

    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 15%;
    line-height: 1.1;
    font-size: 4vmin;
}

.bottom-row {
    flex: 1;
    display: flex;
    gap: 1%;
}

.temperature {
    flex: 1;
    background-color: #ef4444;
    font-size: 4vmin;
    clip-path: ellipse(100% 100% at 100% 0%);
}

.humidity {
    flex: 1;
    background-color: #10b981;
    font-size: 4vmin;
    clip-path: ellipse(100% 100% at 0% 0%);
}
