* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main {
    height: 100vh;
    width: 100vw;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aquamarine;
}

.container {
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: white;
}

.container h2 {
    font-size: 3rem;
    letter-spacing: 1px;
}

.animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.animation .circle {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background: burlywood;
    animation: agota 1s ease infinite alternate;
}

.circle:nth-child(2) {
    animation-delay: 0.1s;
}

.circle:nth-child(3) {
    animation-delay: 0.2s;
}

.circle:nth-child(4) {
    animation-delay: 0.3s;
}


@keyframes agota {
    from {
        transform: translateY(-10px);
    }
    to {
        transform: translateY(10px);
    }
}