body,html {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Helvetica', sans-serif;
background-image: linear-gradient(to right top, #636f8b, #4962a2, #3252b5, #293cc4, #3c15cb);
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.avatar {
width: 200px;
height: 200px;
box-sizing: border-box;
border: 5px white solid;
border-radius: 50%;
overflow: hidden;
box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
transform: translatey(0px);
animation: float 6s ease-in-out infinite;
}
img { width: 100%; height: auto; }
@keyframes float {
0% {
box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
transform: translatey(0px);
}
50% {