*{
    padding: 0;
    margin: 0;
}

html{
    font-family: 'Crimson Text', serif;
    /* background-color: #BDE3E1; */
}

body{
    /* width: 80%; */
    position: relative;
    min-height: 100vh;
    margin: auto;
    background-color: white;
}

.main-content{
    padding-bottom: 100px;

}
.width-style {
    width: 90%;
    /* max-width: 1000px; */
    margin: auto;
}

.header{
    display: flex;
    /* justify-content: space-between; */
}

.logo{
    width: 500px;
}
.navigation {
    width: 100%;
    text-align: right;
    position: relative;
}

.navigation ul {
    position: absolute;
    bottom: 25px;
    right: 0;
}

.navigation a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 18px;
}
.navigation-links{
    display: inline;
    padding: 0 12px;
}

.underline{
    height: 2px;
    background-color:#8B8B8B;
}

.container {
    padding: 125px 0 75px 0;
}

.intro-text{
    margin: auto;
    text-align: center;
    background-color: #FAE596;
    border-top: 16px solid rgb(231, 211, 139);
    border-bottom: 16px solid rgb(231, 211, 139);
}

.intro-text-holder{
    max-width: 600px;
    margin: auto;
    padding: 10px;
}

.standard-text{
    font-size: x-large;
}

.artwork{
    padding: 50px 0 50px 0
}
.artwork h3{
    padding: 25px 0 25px 0;
    text-align: center;
}

.artwork-holder{
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
}

.artwork-holder img{
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.image-container {
    position: relative;
    width: 31%;
    padding: 1% 0;
}
.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }

  .text{
      background-color: #173E43;
      color: white;
      padding: 10px;  
}
  
  .image-container:hover .artwork-image {
    opacity: 0.3;
  }
  
  .image-container:hover .middle {
    opacity: 1;
  }

  footer{
      background-color: #173E43;
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100px;
      text-align: center;
      border-top: 8px solid rgb(47, 114, 121);
      /* border-bottom: 8px solid rgb(47, 114, 121); */
  }

.social-links{
    width: 300px;
    padding: 16px 16px 6px 16px;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.social{
    width: 40px;
    height: auto;
    opacity: 0.5;
}


  input[type="text"],
  input[type="email"],
  select,
  textarea {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    width: 400px;
    padding: 4px 8px 4px 8px;
    border: 1px solid #A7A7A7;
    box-sizing: border-box;
    margin: 5px 0;
    resize: none;
    background-color: #F5F5F5;
  }

  textarea{
      height: 200px;
  }
  
  input[type="submit"] {
    background-color: #FAE596;
    font-size: 20px;
    padding: 5px 10px 5px 10px;
    border: 2px solid #DECB84;
    cursor: pointer;
  }


  .contact{
      width: 400px;
  }

.contact-img{
    width: 500px;
    height: auto;
}

.contact-div{
    padding: 75px 0;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
}

@media only screen and (max-width: 1400px){
    .image-container {
        width: 49%;
    }
  }

@media only screen and (max-width: 1005px){
    .contact-img{
        display: none;
    }
    .contact{
        margin: auto;
    }
}

@media only screen and (max-width: 900px) {
    .header{
        justify-content: center;
        flex-wrap: wrap;
    }
    .navigation {
        text-align: center;
        padding: 0 0 25px 0;
    }
    .navigation ul {
        position: relative;
        bottom: 0;
    }
  }

  @media only screen and (max-width: 800px){
    .image-container {
        width: 99%;
    }
  }

  @media only screen and (max-width: 500px){
    .logo{
        width: 100%;
    }
    .contact{
        width: 90%;
        margin: auto;
    }
    input[type="text"],
    input[type="email"],
    select,
    textarea {
      width: 100%;
    }
  }