
html,body {
    height:100%;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: white;
  font-family: "Futura Light", Sans-Serif;
  font-size: 12px;
}

.wrapper {
  height: 100%;
  width: 100vw;
  margin: 0 auto;
  /* border: 1px solid red; */
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  /* border: 1px solid black; */
  height: calc(100% - 60px);
  padding: 30px 75px;
}

.image-container {
  width: 100%;
  text-align: center;
  margin: auto;
}

.image-container img{
    max-width:100%;
    height:auto;
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding-top: 60px;
}

.email a{
  color: #808080;
  text-decoration: none;
}

.social-media {
    padding-top: 20px;
    order: 1;
    text-align:center;
  }
  .social-media img {
      width:20px;
      height:20px;
  }
  .social-media a {
      padding-right:20px;
      
  }
  .social-media a.social-media--linkedin{
      padding-right:0;
  }

  .email {
    order: 0;
    text-align:center;
  }

/* @media (min-width: 320px) and (max-width: 576px) {
  body {
    font-size: 11px;
  }

  .contact-container {
    flex-direction: column;
  }

  .img-container img {
    width: 50%;
  }

  
} */

@media only screen and (min-width: 576px) {
  body {
    font-size: 20px;
  }
  .container {
      height: calc(100% - 120px);
      padding:60px;
  }
  .contact-container {
    flex-direction: row;
  }
  .social-media {
    padding-top: 0px;
    order: 0;
    text-align:left;
  }

  .email {
    order: 0;
    text-align:center;
  }
   .social-media img {
      width:40px;
      height:40px;
  }
}
