

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif
  }
  
  html {
    font-size: 62.5%;
  }
  
  a{
    color:black;
    text-decoration:none;
  }

  #navbar{
    position: fixed;
    z-index: 50;
    top: 0;
    width: 100%;
    height: 6.4rem;
    background-color: #eee;
    box-shadow: 5px;
  }
  
  #navlogo{
    height:6.4rem;
    width:auto;
  }
  
  #loggedin_navbar{
    height: 100%;
    position: fixed;
    width: 20%;
    background-color: #FFCD3D;
    font-size: 3.2rem;
    color: black;
    padding-left:1rem;
    font-weight: lighter;
    z-index:25;  
  }
  
  #whattowear{
    position: relative;
    top: 10%;
    font-weight: bolder;

  }
  
  #closet{
    position: relative;
    top: 15%;
    font-weight: bolder;

  }
  
  #settings{
    position: relative;
    top: 20%;
    font-weight: bold;
  }
  
  #signout{
    position: relative;
    top: 77%;
  }

  .container {
    width: 60%;
    height: 100vh;
    background-color: #fff;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    left: 30%;
  }
  
  .calendar {
    width: 45rem;
    height: 52rem;
    background-color: #000;
  }
  
  .month {
    width: 100%;
    height: 12rem;
    background-color: #FFCD3D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    text-align: center;
  }
  
  .month i {
    font-size: 2.5rem;
    cursor: pointer;
  }
  
  .month h1 {
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
  }
  
  .month p {
    font-size: 1.6rem;
  }
  
  .weekdays {
    width: 100%;
    height: 5rem;
    padding: 0 0.4rem;
    display: flex;
    align-items: center;
  }
  
  .weekdays div {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    width: calc(44.2rem / 7);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem;
  }
  
  .days div {
    font-size: 1.4rem;
    margin: 0.3rem;
    width: calc(40.2rem / 7);
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
  }
  
  .days div:hover:not(.today) {
    background-color: #262626;
    border: 0.2rem solid #FFCD3D;
    cursor: pointer;
  }
  
  .prev-date,
  .next-date {
    opacity: 0.5;
  }
  
  .today {
    background-color: #FFCD3D;
  }
  