
.h1{
    font-family: sans-serif;
}
body{
    border-style: double;
    background-color: navy;
    border-width: 20px;
    border-color: red ;
}
.img{
    width: 100px;
    height: 100px;
}
.mostlikedteams{
    height: 150px;
    width: 900px;
    background-color: red;
    padding: 1em;
    font-weight: 700;
    color: aqua;
    text-align: center;
    border: 10px solid;
    border-radius: 10px;
    display: flex;
}
.mosthatedteams{
    height: 150px;
    width: 900px;
    background-color: aqua;
    padding: 1em;
    font-weight: 700;
    color: red;
    text-align: center;
    border: 10px solid;
    border-radius: 10px;
    display: flex;
}
p{
    color: red;
}
.Title{
    position: absolute;
    background-color: aqua;
    height: 250px;
    width: 285px;
    padding: 1em;
    border: 10px dashed;
    border-radius: 5px;
    left: 400px;
   text-align: center;
   animation-duration: 3s;
   animation-name: spin;
   animation-timing-function: ease-in-out;
   animation-delay: 1s;
   animation-iteration-count:1;
   animation-direction: normal;

animation-fill-mode: forwards;
}
.element:hover{
    animation-play-state: paused;
}
@keyframes spin{
    0%{
        
    }
    50%{
        scale: 2;
        transform: rotate(0);
        border-radius: 0;
    }
    100%{
        transform: rotate(360);
        border-radius: 50%;
    }
}
link{
    color: red;
}
a:link {
    color: red;
    background-color: solid;
    text-decoration: none;
  }
  
  a:visited {
    color: red;
    background-color: solid;
    text-decoration: none;
  }
  
  a:hover {
    color: red;
    background-color: solid;
    text-decoration: underline;
  }
  
  a:active {
    color: red;
    background-color: solid;
    text-decoration: underline;
  }
  