.spacer {
  height: 10px;
}

h1 {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-left: 20px;
  overflow: hidden;
  text-shadow: 2px 5px 10px rgba(0, 0, 0, 0.39);
  }

h2 {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 5px;
}

.nav {
    width: 100%;
    min-width: 500px;
    height: 50px;
    background-color: rgb(0, 217, 255);
    font-family: "Poppins", sans-serif;
    text-align: left;
    box-shadow: 2px 5px 10px black;
    display: flex;
    padding: 0 20px;
    justify-content: space-between;   
}

.horizontal-list {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    text-shadow: 0px 0px 5px rgba(209, 209, 209, 0.5);
    align-items: center;
    
}

.horizontal-list li {
  padding-left: 20px;
}

.horizontal-list li a{
  text-decoration: none;
  color: whitesmoke;
}
.horizontal-list li a:hover {
    text-decoration: underline;
}
.align-right {
  position: absolute;
  right: 20;
}
.card-container {
  display: flex;
  padding: 20px;
}
.card {
  background-color: rgb(0, 217, 255);
  box-shadow: 2px 5px 10px black;
  padding: 5px;
  margin: 20px;
  width: 50%;
  max-width: 400px;
  min-width: 200px;
  height: fit-content;

}

/* Switch list styling */
.switch-list {
  list-style-type: none; /* Removes default bullets */
  padding: 26;
  margin: 0;
}

.switch-list li {
  margin-bottom: 10px;
  margin-right: 10px;
  display: flex;
  justify-content: space-between; 

}


.switch {
  position: relative;
  display: inline-flex;
  width: 63px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
  
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(28px);
}

.slider-text{
  font-family: "Poppins", sans-serif;
}




.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }