html, body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: Inter;
}

@media (prefers-color-theme: dark) {
    body {
        color: white;
    }
}

.pomodoroBox {
    width: 380px;
    height: 280px;
    border: solid;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    position: relative;
}

.timer {
    font-size: 4rem;
}

.timerButton {
    width: 100px;
    height: 50px;
    border-radius: 10px;
    background: transparent;
    border: solid 1px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}


.timerButton:hover {
    background: rgb(220, 220, 220);
}


.timeStop {
    background-color: black;
    color: white;
}

.creator {
    position: absolute;
    bottom: 0;
    margin-left: 10px;
    justify-self: flex-end;
    align-self: flex-start;
}

p > a {
    color: black;
}

.clock {
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 0.8rem;
}

.timeChangeContainer {
    align-self: flex-start;
    font-size: 30px;
}

.timeChangeContainer > ion-icon {
    cursor: pointer;
}

.blur {
    width: 100px;
    height: 100px;
    border: solid;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    filter: blur(50px);
    animation-name: move-around;
}

.blur1 {
    left: 50px;
    bottom: 50px;
    background-color: orange;
}

.blur2 {
top: 50px;
background-color: red;
}

.blur3 {
right: 50px;
background-color: yellow;
bottom: 50px;
}

@keyframes move-around {
    
}