/* 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." */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box
  }

 .container{
   width: 100%;
   min-height: 100vh;
   background:radial-gradient( #351d6e, #de40cb);
   padding: 10px;
   
   }

.todo-app {
  width: 100%;
  max-width: 540px;
  background: #67458a;
  margin: 100px auto 20px;
  padding: 40px 30px 70px;
  border-radius: 10px;
   }
.todo-app h2{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  }
.row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #927fad;
  border-radius: 30px;
  padding-left: 20px;
  margin-bottom: 25px;
  }
input{
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px;
  font-weight: bold;
  font-size: 17px;
  }
button{
  border: none;
  outline: none;
  padding: 16px 50px;
  background: #052927;
  color: white;
  font-size: 16px;
  font-family: cursive;
  
  cursor: pointer;
  border-radius: 40px;
  }
ul li {
  list-style: none;
  font-size:17px;
  padding: 12px 8px 12px 50px;
  user-select: none;
  cursor: pointer;
  position: relative;
  }
ul li::before {
  content: '';
  position: absolute;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background-image: url("images/purpleglow.png");
  background-size: cover;
  background-position: center;
  top: 12px;
  left: 8px;

  }
ul li.checked{
  color: white;
  text-decoration: line-through;
  }
ul li.checked::before{
  background-image: url("images/purple-check.png");
  }
ul li span{
  position: absolute;
  right: 0;
  top: 5px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  }
ul li span:hover{
  background: #927fad;
  }
 .calc {background-color: #c286f0; } 
 .phys121 {background-color: #77a379;}
 .phil182 {background-color: #a67f67;}
 .uclr {background-color: #edda82;}
 .misc {background-color: #cc91b5;}
 li {
   margin: 6px;
   padding: 8px;
   border-radius: 8px;
   }
a:link {
  color: #947af0; 
}

/* Visited link */
a:visited {
  color: #c7b6f2;
}

/* Mouse over link */
a:hover {
  color: #cc3ad6;
}

h1 { 
  background-color:white;
  color: #052927;
  font-family: serif;
  text-align: center;
  padding: 20px;
  }
h2 { 
  color: white;
  font-family: serif;
  text-align: left;
  font-size: 27px;
  font-weight: bold;
   background-color:#cf24ed;
   padding: 20px;
   border-radius: 50%;
   width: fit-content;
   margin: 20px ;
  
   
  }
h3 { 
  color: #052927;
  font-family: cursive;
  font-size: 22px;
  text-align: right;
  font-weight: bold;
  background-color:#836c96;
   padding: 20px;
   border-radius: 50%;
   width: fit-content;
   margin: 20px 20px 20px auto;
  }
h4 { 
  color: white;
  font-family: fantasy;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  }

body {
  background-color: #391a66;
  color: white;
  font-family: fantasy;
  
}
image {
  border: white;
  margin: auto;
  display: block;
  
  }
.center {
  display: block;
  margin: 0 auto;
  text-align: center;
  }
  
/* class schedule-->*/
p1 {
  align-text: right;
}

