 @import url('https://fonts.googleapis.com/css2?family=Noto+Sans;wght@400;500;700display=swap');
 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
 }
 .light-body{
  background: linear-gradient(180deg, #EBF2FC 0%, #EEF8F9 100%);
  color: hsl(227, 75%, 14%)
 }
 .night-body{
   background: linear-gradient(90deg, #040918 0%, #091540 100%);
   color: hsl(200, 60%, 99%)
 }
 .main{
      padding: 1rem 5rem;
 }
 /* logo light-night part  */
 .logo-light-night{
  display: flex;
 align-items: center;
  justify-content: space-between;
  padding:0.3rem 2rem;
  border-radius: 15px;
  
 }
 .logo-light{
  background-color: hsl(200, 60%, 99%);
 }
 .logo-night{
  background-color: hsl(226, 11%, 37%, 0.5);
 }
 .logo{
  margin-top: 0.3rem;
 }
 .light-night{
   padding: 4px 10px;
   border-radius: 10px;
   cursor: pointer;
   border: none;
   outline: none;
 }
.light-night:hover{
   border: 1px solid hsl(3, 71%, 56%)
}
 .light-mode{
  background-color: hsl(0, 0%, 93%);
 }
 .night-mode{
  background-color: hsl(226, 11%, 37%, 0.2);
  
 }
 .light-night img{
  margin-top: 0.4rem;
   width: 18px;
    object-fit: cover;
 }
 
 /* logo light-night part end */
 /* selection part */
 .selection{
  display: flex;
  margin: 2rem 0;
  justify-content: space-between;
  align-items: center;
 }
 .selection .title{
  font-size: 2rem;
 }
 .selection .title-light{
  color: hsl(227, 75%, 14%);
  
 }
 .selection .title-night{
  color: hsl(200, 60%, 99%);
 }
 .buttons{
  display: flex;
  align-items: center;
 gap: 10px;
 }
 .btn{
  padding: 0.2rem 0.6rem;
   border-radius: 18px;
  border: none;
  outline: none;
  font-size: 16px;
  cursor: pointer;
  transition: 1ms;
 }
 .buttons .btn-light{
  color: hsl(227, 75%, 14%);
  background-color: hsl(200, 60%, 99%);
 }
 .buttons .btn-night{
  color: hsl(200, 60%, 99%);
  background-color: hsl(226, 11%, 37%);
 }
 .buttons .btn-light:focus{
   color: hsl(0, 0%, 93%);
   background-color: hsl(3, 71%, 56%);
 }
 .buttons .btn-night:focus{
   color: hsl(227, 75%, 14%);
   background-color: hsl(3, 71%, 56%);
 }
 /* selection part end*/
 /* extension part */
 .extensions{
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
 }
 .card{
  margin: 1rem 0;
  padding: 1rem 2rem;
  border-radius: 20px;
 
  }
  .card-light{
  background-color: hsl(200, 60%, 99%);
   box-shadow: 2px 2px 3px hsl(0, 0%, 93%);
  }
  .card-night{
 background-color: hsl(226, 11%, 37%, 0.2);
 box-shadow: 2px 2px 3px hsl(226, 11%, 37%, 0.2);
  }
 .content .h2-light{
  font-size: 1.5rem;
  color: hsl(227, 75%, 14%)
 }
 .content .h2-night{
  font-size: 1.5rem;
  color: hsl(200, 60%, 99%)
 }
 .content .p-light{
  color: hsl(226, 11%, 37%)
 }
 .content .p-night{
  color: hsl(0, 0%, 78%)
 }
 .remove{
  margin-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
 }
 .remove .remove-btn{
  padding: 0.2rem 0.6rem;
  border: 1px solid hsl(0, 0%, 78%);
  border-radius: 15px;
  cursor: pointer
 }
 .remove-light{
 background-color: hsl(200, 60%, 99%);
  color: hsl(227, 75%, 14%);
 }
 .remove-night{
   background-color: hsl(226, 11%, 37%, 0.2);
   color: hsl(200, 60%, 99%)
 }
 .remove-btn:hover{
  background-color: hsl(3, 71%, 56%);
  color: hsl(200, 60%, 99%)
 }
 .remove .fa-toggle-on{
  font-size: 1.5rem;
  color: hsl(3, 71%, 56%);

 }
 .fa-toggle-off{
  font-size: 1.5rem;
  color: hsl(226, 11%, 37%,);
  
 }
 
 .card .img-text{
  display: flex;
  align-items: center;
  gap: 15px;
 }
 /* extension part end */
 .hidden{
  display: none;
 }
 .attribution {
        font-size: 11px;
        text-align: center;
      }
      .attribution a {
        color: hsl(228, 45%, 44%);
      }