@font-face {
    font-family: church;
    src: url(jijij.ttf);
}

@keyframes bell-sounding {
    0%{
        transform: translateX(-50%) scale(1);
    }

    25%{
        transform: translateX(-50%) scale(1.1) rotate(-10deg);
    }

    75%{
        transform: translateX(-50%) scale(1.1) rotate(10deg);
    }
    
    100%{
        transform: translateX(-50%) scale(1);
    }
}

*{
    font-family: church;
    align-items: center;
    text-align: center;
    color: rgb(80, 12, 12);
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    background-color: rgb(251, 233, 211);
}

#house{
    width: 500px;
    height: auto;
    position: relative;
    z-index: 1;
}

#bell{
    width: 300px;
    height: 300px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}

.bell-finished{
    animation-name: bell-sounding;
    animation-duration: 3s;
    animation-iteration-count: 3;
}

.chruch-container{
    width: 100%;
    max-width: 1000px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#timer{
    margin-top: -20px;
    display: flex;
    justify-content: center;
}

input{
    height: 40px;
    width: 70px;
    font-size: 35px;
    border : 0px;
    display: flex;
    justify-content: center;
    background-color: rgb(251, 233, 211);
}

.dotdot{
    font-size: 35px;
}

button{
    height: 30px;
    font-size: 20px;
    border: 2px solid rgb(80, 12, 12);
    background-color: rgb(255, 252, 247);
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
}

.topbar{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    height: 80px;
    background-color: rgb(114, 61, 61);
}

.switch{
    list-style: none;
    color: antiquewhite;
    font-size: 18px;
}

h1{
    margin-top: 80px;
}

#today-objectives{
    margin-top: 2.2rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

#today-objectives h1{
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    background: transparent;
}

#objectives-container{
    height: 900px;
    width: 800px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.objectives{
    width: 100%;
}

.type-in{
    width: 750px;
    height: 750px;
    background-color: rgb(255, 243, 228);
    margin-left: 20px;
    border-radius: 20px;
}

.row{
    display: flex;
    justify-content: space-between;
}

#input-box{
    margin-top: 20px;
    margin-left: 50px;
    width: 550px;
    background-color: rgb(255, 252, 247);
    font-size: 20px;
    border-radius: 20px;
}

.row button{
    width: 90px;
    margin-top: 20px;
    margin-right: 50px;
}

ul li{
    margin-left: 15px;
    display: flex;
    justify-content: flex-start;
    list-style: none;
    font-size: 18px;
    padding: 12px 18px 25px 50px;
    user-select: none;
    cursor: pointer;
}

ul li::before{
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 2px solid rgb(80, 12, 12);
    margin-left: -40px;
    margin-top: -5px;
}

ul li.checked{
    text-decoration: line-through;
    color: rgba(108, 59, 59, 0.762);
}

ul li.checked::before{
    background-color: rgb(114, 61, 61);
}

ul li span{
    position: absolute;
    margin-left: 550px;
    margin-top: 15px;
    width: 30px;
    height: 30px;
    font-size: 25px;
    text-align: center;
    align-items: center;
}

ul li span:hover{
    background-color: rgb(254, 236, 213);
    border-radius: 50%;
}