/*
  CSS RESET
*/


/*

    DONT REPEAT YOUR (FUCKIN) SELF

*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 100%;
}

ol,
ul {
  list-style: none;
}

img,
video {
  width: 100%;
  
}
@media screen and (max-width: 1000px) { 
  img,
  video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  
  }
  }

a {
  color: black;
  text-decoration: none;
}



.box1 {
  position: fixed;
  justify-content: center;
  left: 50%;
  transform: translateX(-100%);
  bottom: 0; 
  background-color: #FCF3C6;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

@media screen and (max-width: 1000px){
  @keyframes colorchange1 {
    0%{
      background-color:#FCF3C6;
       
      }
   100%{
      background-color:#c6d7fc;
      }
  }
  .box1 {
    animation: colorchange1 15s  alternate infinite;
    position: fixed;
    justify-content: center;
    left: 50%;
    transform: translateX(-100%);
    bottom: 0; 
    background-color: #c6d7fc;
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
}
.box1:hover{
  background-color:#963fdd ;
  transition:03s 0s;
}

.box2 {
  position: fixed;
  justify-content: center;
  left: 50%;
  bottom: 0; 
  background-color: #A0B463;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media screen and (max-width: 1000px){
  @keyframes colorchange2 {
    0%{
      background-color: #A0B463;
       
      }
   100%{
      background-color:#6376b4;
      }
  }
  .box2 {
    animation: colorchange2 10s  alternate infinite;
    position: fixed;
    justify-content: center;
    left: 50%;
    bottom: 0; 
  
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
}
.box2:hover{
  background-color:#6376b4;
  transition:03s 0s;
}
body {
  background-color: #e4c282;
}
