body {
  background: url('../img/background.jpg');
  background-size: auto 100%;
  font-family: 'Montserrat', sans-serif;
}

a {
  color: #e2e2e2;
}
#content {
  width: 40%;
  position: absolute;
  top: 5%;
  bottom: calc(5% + 50px);
  left: 5%;
  padding: 10px;
  color: #e2e2e2;
  border-radius: 10px;
  line-height: 180%;
}

#content h1 {
  font-weight: normal;
  color: #fff;
}

#content #social-icons {
  position: absolute;
  bottom: 0;
  left: 0;
}

#shelf {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 28%;
}

#computer {
  position: absolute;
  bottom: 50px;
  right: 10px;
  width: 45%;
}

@media screen and (max-width: 768px) {
  #content {
    width: 85%;
    bottom: calc(23% + 50px);
  }
  
  #shelf {
    display: none;
  }
  
  #computer {
      width: 65%;
  }
}

#footer {
  background-color: #e2e2e2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
}