body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    text-align: center;
    animation: colorchange 2s;
    -webkit-animation: colorchange 2s;
}

@keyframes colorchange {
      0%   {background: white;}
      100% {background: #5dc1cd;}
}

@-webkit-keyframes colorchange {
    0%   {background: white;}
    100% {background: #5dc1cd;}
}

.logo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes rotateAnim {
    from {transform: rotate(0);}
    to {transform: rotate(540deg);}
}

button {
    height: 250px;
    background: rgba(255,255,255,0);
    border: none;
    padding: 0;
    outline: 0;
    animation: rotateAnim 2s;
    -webkit-animation: rotateAnim 2s;
}
