html, body {
    height: 100%;
  }
  
  body {
    margin: 0;
    padding: 0;
    background: url(bg.jpg) no-repeat center center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
  }
  
  .box {
    width: 30%;
    min-width: 400px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 30px;
    margin: 5% 5% 5% 3%;
    text-align: left;
    color: #333;
    font-size: large;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .box-img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    display: block;
  }
  
  .box h1 {
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .box p {
    text-align: left;
    line-height: 1.5;
  }
  
  ul {
    margin: 0;
    padding: 0;
  }
  
  .box li {
    display: inline-block;
    margin: 6px;
    list-style: none;
  }
  
  .box li a {
    color: #333;
    text-decoration: none;
    font-size: 60px;
    transition: all ease-in-out 250ms;
  }
  
  .box li a:hover {
    color: #2e2e2e;
  }
  
  @media screen and (max-width: 480px) {
    .box {
      position: static;
      width: 90%;
      margin: 30px auto;
    }
    .box-img {
      width: 150px;
      height: 150px;
    }
    .box h1 {
      font-size: 30px;
    }
  }
  