/* base.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  
}


body {
  color: #3b1f47;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #36ba98 0%, #36BA98 10%, #E9C46A 30%, #F4A261 50%, #E76F51 70%, #36BA98 90%, #36BA98 100%);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
}

body.dark-mode {
  background: linear-gradient(
    135deg,
    #1a3c34 0%,
    #1a3c34 10%,
    #3c2a4d 30%,
    #5a3f6b 50%,
    #8c4b3f 70%,
    #1a3c34 90%,
    #1a3c34 100%
  );
  color: white;
}

body.dark-mode .calendar {
  color: white;
}


h1 {


    text-align: center;
    font-size: 70px;  
    display: block; 
    margin-top: 0px;
    margin-bottom: 0px;

    display: flex;
    justify-content: center;
}

h2 {

    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 50px;
    display: block;
    margin-top: 10px;
    margin-bottom: 0px;
    
}

p {

}




