body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 98vh;
    background-color: #000000;
}
#timerBox{
    background-color: #b5e48c;
    width: 15vw;
    height: 15vh;
    font-size: 2vw;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#homeButton{
    text-decoration: none;
    font-size: 3em;
    position: absolute;
    top: 0;
    color: white;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#homeButton::after {
    content: '';
    width: 10%;
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: white;
    transition: 0.2s;
    border-radius: 20px;
}
#homeButton:hover {
    color: #b5e48c;
}
#homeButton:hover::after{
    width: 100%;
}
#timerBorder {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 20vw;
    height: 22vh;
    z-index: -2;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid white;
}
#timerBorder::after {
    content: '';
    bottom: 50%;
    background-color: white;
    width: 25vw;
    height: 2vh;
    z-index: 1;
    position: absolute;
    animation: animate 2s infinite ease-in-out;
}
@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}