body{
    padding: 0 5% 0 7%;
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_box{
    background-color: white;
    border: 3px solid black;
    border-radius: 15px;
    width: 1600px;
    height: 900px;
   
  

}

.click{
    text-decoration: line-through;
    color: gray
}

.hiden{
    display: none;
}

#mainTitle{
   justify-content: center;
   margin-top: 30px;
}

#in{
    border: none;
    border-bottom: 3px solid black;
    width: 200px;
}

#clockDiv{
    box-shadow:2px 3px 5px 0px ;
    display: flex;
    border: 2px solid black;
    border-radius: 10px;
    width: 500px;
    height: 50px;
    justify-content: center;
    margin-top: 30px;
}

#clock{
    margin-right: 50px;
    font-size: 2rem;
    font-weight: bolder;
}

#todo-list{
    box-shadow:2px 3px 5px 0px ;
    border: 2px solid black;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 500px;
    height: 450px;
    position: relative;
}

#todo-title{
  text-align: center;
}

#todoInput{
    position: absolute;
    right: -1px;
    bottom: -1px;
    border: 2px solid black;
    border-bottom-left-radius:10px;
    border-bottom-right-radius: 10px;
    width: 494px;
    height: 50px;
    background-color:#eee
}

#quote{
    width: 500px;
    height: 150px;
    position: relative;
}

#user-text{
  position: absolute;  
  bottom: 10%;
  color: wheat;
  font-size: 19px;
  font-family: 'ypseo';
  text-align: center;
  font-weight: bolder;
}

#img{
    box-shadow:2px 3px 5px 0px ;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 150px;
}

#login-form{
  padding-left: 20px;
  padding-top: 10px;
}

/* 달력 */
.dateHead div {
    background:black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 5px;
  }
  
  .grid div {
    padding: .6rem;
    font-size: .9rem;
    cursor: pointer;
  }
  
  .dateBoard div {
    color: #222;
    font-weight: bold;
    min-height: 4.5rem;
    padding: .6rem .8rem;
    border-radius: 5px;
    border: 1px solid #eee;
  }
  
  .noColor {
    background: #eee;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
  }

  .dateTitle{
    font-size: 1.6rem;
  }
  
  /* 좌우 버튼 */
  .btn {
   display: block;
   width: 20px;
   height: 20px;
   border: 3px solid #000;
   border-width: 3px 3px 0 0;
   cursor: pointer;
  }
  
  .prevDay {
    transform: rotate(-135deg);
    margin-top: 28px;
  }
  
  .nextDay {
    transform: rotate(45deg);
    margin-top: 26px;
  }

  
  .rap {
    width: 60%;
    margin-top: 1.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;  
    font-family: Pretendard;
    margin-left: 7%;
  }
  
  .dateHead {
    margin: .4rem 0;
  }