body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    color: #f9f9f9;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: no-repeat center url("background.png");
    background-color: rgb(80, 74, 74);
}

.container {
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

img {
    width:100px;
    border-radius: 50px;
    background-color: rgb(255, 255, 255, 0.7);
    transition: transform 0.9s ease;
}
.placeholder {
    height:110px;
    text-align: center;
}


a:link {
    color: #f9f9f9;
   }
   a:visited {
    color: #cecece;
   }
   a:hover {
    color: #8bc0c0;
   }
   a:active {
    color: #339999;
   }

.container:hover img {
 transform: translate(25px, -240px);
}

img:hover {
 transform: translate(25px, -240px);
}

@media screen and (max-width : 550px){

    body{
        font-size: 12px;
    }
    
}