 /* GLOBAL STYLES */
body {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.body {
  width: 95%;
}

#nav-name{
  width: 95%;
  height: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin: 20px 0px;
  color: #8C9A9E;
}

#nav-bar {
  float: right;
  font-size: 20px;
  vertical-align: center;
  margin-top: 10px;
}

#nav-bar span {
  color: #8C9A9E;
}

#hello {
  margin: auto;
  width: 70%;
  color: #8C9A9E;
}

#hello p {
  text-align: center;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
}

p#intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 55px;
  text-align: center;
  color: black;
}


.container {
  position: relative;
  float: left;
  width: 49%;
  margin: 5px;
  text-align: center;
  color: white;
}

.text-hover p {
  display: none;
  background: #919DA1;
  padding: 20px 25px 20px 25px;
  margin: 5%;
  bottom: 29%;
}

.text-hover:hover p {
  display: block;
  position: absolute;
  font-family: 'Raleway', serif;
  color: white;
  font-size: 18px;
  line-height: 25px;
}

.text-hover p span {
  font-family: 'Raleway', serif;
  color: white;
  font-size: 14px;
}

.container_long {
  position: relative;
  clear: both;
  width: 98%;
  margin: 5px;
  text-align: center;
}

.container_long:hover {
  opacity: .9;
  cursor: pointer;
  line-height: 25px;
}


.image {
  display: block;
  width: 100%;
  height: auto;
}

.container:hover {
  opacity: .9;
  cursor: pointer;
}

.text {
  color: white;
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 3px;
}

.text a:link {
  color: white;
}

.text a:hover {
  color: white;
  text-decoration: underline;
}

.text a:visited {
  color: white;
}

#footer {
  margin: auto;
  width: 800px;
  height: 50px;
  clear: both;
}

#footer p {
  text-align: center;
  padding: 30px;
  font-family: 'Cormorant Garamond', serif;
}


/*FOR MOBILE*/
@media only screen and (max-width: 1200px) {
    .body {
        width: 95%;
    }

    #work {
        width: 100%;
        margin: auto;
        margin-top: 50px;
      }

    #nav-name{ 
      font-size: 35px;
    }

    #nav-bar {
      font-size: 25px;
    }

    .container {
        width: 95%;
        margin: 10px auto;
        clear: both;
        float: none;
      }

     .image {
        display: block;
        width: 100%;
        height: auto;
      }

      .container_long {
        width: 95%;
        margin: 10px auto;
        clear: both;
        float: none;
      }

}


a:link {
  text-decoration: none;
  color: black;
}

a:visited {
  color: black;
}

a:hover {
  color: #8C9A9E;
}

p#copyright {
  color: #8C9A9E;
  font-size: 15px;
  padding-bottom: 15px;
}






