/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
@import url('https://fonts.googleapis.com/css2?family=Emilys+Candy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barrio&display=swap');

body {
  background-color:  #D0FFF8;
  
}

main {
  display: flex;
  flex-direction: row;
  padding: 0 120px;
}


header {
  display: flex;
  align-content: center;
  justify-content: center;
}


h1, h2 {
   font-family: "Barrio", system-ui;
  font-weight: 400;
  font-style: normal;
}

h3, p, a {    
  font-family: "Emilys Candy", serif;
  font-weight: 400;
  font-style: normal;
}

h2 {font-size: 25px;}

h3 {font-size: 20px;}



.left-side {
  background-color: #FFA9EA;
  height: 100vh;
  width: 25%;
  padding: 1rem 2rem;
  border-radius: 10px;
}

.left-side > h2 {
  margin: 0 !important;
  text-align: center;
  background: orange;
  border-radius: 2px;
  padding: 0.5rem;
  border-style: dashed;
  border-width: 1px;
  border-color: white;
  color: white;
}

.text-container {
  background: #FFA9EA;
  
}



.center-side {
  background-color: white;
  height: 100vh;
  width: 75%;
  border-radius: 10px;
}

.center-side > article {
  padding: 1rem 2rem;
  height: 500px;
}



.center-side > article > h2 {
  margin: 0 !important;
  text-align: center;
  background: orange;
  border-radius: 2px;
  padding: 0.5rem;
  border-style: dashed;
  border-width: 1px;
  border-color: white;
  color: white;
}



.right-side {
  background-color: #FFE700;
  height: 100vh;
  width: 25%;
  border-radius: 10px;
}



@media (max-width: 768px) {
  main {
      flex-direction: column !important;
  }
  
  .left-side, .center-side, .right-side {width: auto;}
}

.music-player {
  background-color: white;
  border-radius: 2px:
  width: 100%;
  height: 30%;
  padding: 1rem 2rem;
}

.music-player > h2 {
  margin: 0 !important;
  text-align: center;
  background: orange;
  border-radius: 2px;
  padding: 0.5rem;
  border-style: dashed;
  border-width: 1px;
  border-color: white;
  color: white;
}


.todo-list {
  padding: 0.5rem 1rem;
  height: 70%;
}

.todo-list > ul {padding: 0;}

.todo-list > ul > li {
  list-style-type: none;
}
