body{
  margin: 0;
  padding: 0;
}

h1{
  margin: 0;
  color: white;
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  font-size: 64px;
}

img{
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-70%);
}

#name{
  top:70%;
}

.container{
  width: 100%;
  height: 100vh;
  background: url("./img/bg.png");
  background-position: center;
  font-family: 'Dancing Script', cursive;
}

button{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 83%;
  color: #FF1493;
  background: white;
  border: 1px solid #FF1493;
  font-size: 24px;
  padding: 5px 40px;
  border-radius: 15px;
  cursor: pointer;
  font-family: "Montserrat";
}

button:hover{
  background: #FF1493;
  color: white;
  transition: 0.5s;
}
