*{
    margin:0;
    padding:0;
    font-family: monospace;
}


h1,h2{
    user-select: none;
}
header{
    color:white;
    height:2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100vh;
    align-items: center;
    background-color: black;
    overflow:x hidden;
}

main{
    color: lime;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    flex-direction: column;
    height: 80vh;
    gap:2rem;
}

section{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(202, 202, 38);
    border-radius: 0.5rem;
    padding: 1rem;
}

#date-section{
    color: lime;
    font-size: 1.5rem;
    gap:1rem;
}

#time-section{
    gap:3rem;
}

.time{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button{
    color:white;
    height:3.5rem;
    width:12rem;
    /* border:1px solid white; */
    background-color: greenyellow;
    cursor: pointer;
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

#features{
    display: flex;
    align-items: center;
    width:100vw;
    flex-wrap: wrap;
    border: none;
    justify-content: space-around;
}

.feature-box{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:0.8rem;
}

.features-text{
    padding: 5px;
    color: aliceblue;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
}

.flag{
    width:2rem;
    color: white;
    font-size: 2.6rem;
    user-select: none;
}

.lap-active:hover{
    font-size: 3rem;
    cursor: pointer;
}

.stop-alarm{
    height:8rem;
    width:20rem;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-direction: column;
    gap:1.5rem;
}

.box{
    /* border:2px solid white; */
    height:10rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow-y: auto;
}

.lap,.alarm{
    font-size: 1.2rem;
    margin: 0.4rem;
    border:1px dotted lime;
    text-align: center;
}

.off{
    text-decoration: line-through;
    opacity: 0.6;
}

.alarm SPAN{
    cursor: pointer;
}

.deleteAlarm{
    height:2rem;
    width:2rem;
}

.text{
    color: white;
}

.options{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:0.4rem;
}

.reset{
    background-color: red;
}

.timer{
    gap:1.1rem;
}

.time-inputs input {
    width: 4rem;
    height: 1.6rem;
    text-align:center;
    font-size: 2rem;
    background-color: black;
    color: lime;
    border-radius: 0.3rem;
    border:none;
    border-right: 1px dotted lime;
    border-width: 6px;
}

.time-inputs input:last-child {
    border-right: none;
}

.active{
    background-color:rgb(236, 182, 82);
}

@media(max-width:900px) {
    h1,h2{
        font-size: 1.4rem;
    }
    #date-section{
        font-size: 1.4rem;
    }
    .btn{
        width: 7rem;
        height:3rem;
    }
}

@media (max-width: 900px) {
    #features {
        flex-direction: column;
        gap: 2rem;
    }

    /* .feature-box {
        width: 90%;
        max-width: 400px;
    } */

    .stop-alarm{
        height:10rem;
    }
}

