@import url("https://fonts.googleapis.com/css?family=Khula&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handjet:wght@300&family=Roboto&display=swap");

* {
    box-sizing: border-box;
    user-select: none;
}

body {
    color: #7db482;
    font-family: "Handjet", sans-serif;
    letter-spacing: 0.1rem;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    text-align: center;
}

a {
    color: #7db482;
    text-decoration: none;
}

a:hover {
    color: #20c433;
}

.start {
    font-size: 2rem;
    @media (min-width: 500px) {
        font-size: 3rem;
    }
}
.reset {
    margin: 10px;
    font-size: 2rem;
}
h1 {
    line-height: 1;
    font-size: 3rem;
    @media (min-width: 500px) {
        line-height: 1.4;
        font-size: 6rem;
    }
}

h2 {
    line-height: 1.4;
    font-size: 4rem;
}
.screen {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    height: 100svh;
    width: 100vw;
    transition: margin 0.5s ease-out;
    background: linear-gradient(90deg, #233626 0%, #1d3821 100%);
}

.screen.up {
    margin-top: -100vh;
}
.time-list {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.time-list li {
    margin: 10px;
}
.break {
    flex-basis: 100%;
    height: 0;
}
.time-list li.break {
    margin: 0px;
}
.time-btn {
    background-color: transparent;
    border: 2px solid #73a377;
    color: #7db482;
    cursor: pointer;
    font-family: inherit;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    @media (min-width: 500px) {
        font-size: 2.5rem;
    }
}

.time-btn:hover {
    border: 2px solid #20c433;
    color: #20c433;
}

.hide {
    opacity: 0;
}

.primary {
    color: #20c433;
}

.info {
    color: #20c433;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 1.5rem;
    width: 100%;
    @media (min-width: 500px) {
        font-size: 2rem;
        width: 500px;
    }
}
.info h3 {
    margin-bottom: 20px;
}
.board {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 90%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(118.38deg, #1b271c 45%, #1d5a25 200.44%);
    @media (min-width: 500px) {
        max-width: 500px;
        max-height: 500px;
        background: repeating-linear-gradient(
                transparent,
                transparent 30px,
                #1b8628 32px
            ),
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 30px,
                #1b8628 32px
            ),
            linear-gradient(118.38deg, #1b271c 45%, #1d5a25 200.44%);
    }

    box-shadow: 0px 0px 5px #18cf2a88, inset -30px -30px 15px #25612b55,
        inset 30px 30px 15px #0e160f55;
    border-radius: 30px;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
}

.circle-color-1 {
    background: linear-gradient(90deg, #21af32 0%, #2fa03c 100%);
    box-shadow: inset 0px 0px 20px #0cf127;
}

.circle-color-2 {
    background: linear-gradient(90deg, #d8d521 0%, #dbd80c 100%);
    box-shadow: 0px 0px 25px #f1ee06;
}
.circle-color-3 {
    background: linear-gradient(90deg, #d81818 0%, #a80d0d 100%);
    box-shadow: 0px 0px 15px #f00808;
}
