@font-face {
    font-family: "Ubuntu";
    src: url(/font/Ubuntu.ttf) format("truetype");
}
:root {
    --color-bg: #006064;
    --color-accent: white;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Ubuntu", sans-serif;
    color: var(--color-accent);
    background-color: var(--color-bg);
}
img {
    margin: 20px 0 30px;
}
h1 {
    font-size: 32px;
    letter-spacing: 2px;
}
#animation {
    display: flex;
    gap: 20px;
    margin: 60px 0 150px;
}
.animation-item {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--color-accent);
    animation: move-the-circle 1s infinite;
    transform-origin: center center;
}
@keyframes move-the-circle {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(0, -30px) scale(1.8); }
    100% { transform: translate(0, 0) scale(1); }
}
