body {
  margin: 0;
  font-family: 'Nanum Gothic', sans-serif;
}

.logo{
  width: 60px;
  margin-bottom: -20px;
}

.nav {
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: #8FBC8F;
}

li {
  list-style-type: none;
  padding: 20px;
  display: inline;
  margin-top: -10px;
}

.ul{
  display: flex;
}

.row {
  display:flex;
}

.container {
  width: 20%;
  position: relative;
}

.container img {
  width:100%;
  opacity: 1;
  height: auto;
  transition: .5s ease;
}

.row .container:focus,
.row .container:hover {
 transform: scale(1.5);
 z-index: 1;
}

.middle {
  background-color: #8FBC8F;
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.container:hover .middle {
  opacity:0.8;
}

.text {
  color: white;
  margin-top: 50%;
  font-size: 50%;
  text-align: center;
}

.footer {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  padding: 20px;
  width: 100%;
  background-color: white;
  height: 3%;
  font-size: 12px;
  text-align: left;
}

.footer p {
  color: grey;
}

.spacer{
  background-color: #8FBC8F;
  height: 5000px;
  width: 100%;
}

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

.contact {
  width: 50%;
  display: flex;
}

.container-text {
  max-width: 11;
  margin: 0 auto;
  padding: 0 3rem;
  margin-top: 4rem;
  text-align: center;
  display: flex;
}

.container-text h1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  text-align: left;
}

.container-text p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: left;
}

.profile-pic {
  width: 60%;
  display: flex;
}

.column{
  flex: 50%;
}







