html,
body {
  font-family: 'Playfair Display', serif;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: 0;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/bg.jpg");
  background-size: contain;
  background-position: bottom right;
  background-attachment: fixed;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.backdrop:before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/bg-frame.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 100%;
  background-color: #FCA8B6;
  min-height: 300px;
  padding: 60px;
}

.container .meta .info .name{
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
}
.container .meta .info .desc{
  font-size: 38px;
  font-weight: 500;
  color: #000;
}

.container .button{
  font-family: 'Roboto Mono', monospace;
  background-color: #fff;
  padding: 15px 30px;
  color: #000;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: background-color .3s;
}

.container .button:hover{
  background-color: #000;
  color: #fff;
}

.container .meta{
  display: flex;
  align-items: center;
}

.container .meta > div{
  width: 50%;
}

.container .meta .image-wrapper{
  position: relative;
}

.container .meta .image-wrapper .circle{
  position: relative;
  text-align: right;
}

.container .meta .image-wrapper .circle img{
    max-width: 300px;
    width: 100%;
    border-radius: 50%;
}

.container .social-handle{
  font-family: 'Roboto Mono', monospace;
  padding: 0;
  margin: 0 0 45px;
  list-style-type: none;
}

.container .social-handle li{
  display: inline-block;
}

.container .social-handle li a{
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  transition: background-color .3s;
  font-size: 12px;
}

.container .social-handle li a:hover{
  background-color: #fff;
  color: #000;
}

.container .sign{
  text-align: center;
  font-family: 'Cedarville Cursive', cursive;
  font-size: 28px;
  margin-top: 15px;
  font-weight: normal;
  margin-bottom: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .container {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    margin: 15px 15px;
    width: auto;
  }
  .container .meta{
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
  }
  
  .container .meta > div{
    flex: 1;
    flex-basis: 100%;
    width: 100%;
  }

  .container .meta .image-wrapper .circle{
    text-align: center;
  }

  .container .meta .sign{
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .container .meta .info .name{
    font-size: 60px;
  }
  .container .meta .info .desc{
    font-size: 32px;
  }
  
  .container .button{
    font-size: 12px;
  }
  .container {
    padding: 60px 30px;
  }
}