body {
  background-color: rgb(201, 200, 200);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: large;
  color: rgb(10, 77, 78);
  margin: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container{
    background-color: aliceblue;
    box-sizing: border-box;
    width: 50vh;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items:end;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0px 5px 8px 0px grey;
    text-align: center;
}

button{
    background-color: rgb(16, 89, 90);
    color: aliceblue;
    font-weight: bolder;
    margin: 25px;
    padding: 10px;
    margin-top: 10px;
    width: 100px;
    border: none;
    border-radius: 15px;
    font-size: medium;
    transition: 0.7s ease-in-out;
}

button:hover{
    transform: scale(1.1);
    font-size: large;
    width: 120px;
    box-shadow: 0 2px 5px 0 grey;
    background-color: rgb(54, 114, 115);
}

#loadImg{
    width: 100px;
    transition: transform 1s ease; 
}

@keyframes img-animation{
    from{
        transform: rotate(-360deg);
    }   
}

.animate{
    animation: img-animation 2s ease;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}