html,
body {
  height: 100%;
}

body{
  height: 100vh;
  background-image: url("../images/bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  padding: 25px 25px;
  width: 350px;
  height: 350px;
  backdrop-filter: blur(5px);
  box-sizing: border-box;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.315);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.192);}

.avatarImg {
    position: absolute;
    width: 130px;
    height: 50px;
    border-radius: 5%;
    overflow: hidden;
    top: calc(-100px/2);
    left: calc(45% - 50px);
}