.container-main {
  position: relative;
  height: 100%;
  background-image: url("images/container-main-background-image.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
  grid-template-areas: 
    "hi profileimage"
    ". contactme"
  ;
  justify-items: center;
  align-items: center;
}

.header {
  grid-area: "header";
}

.profile-image {
  grid-area: "profileimage";
  right: 60px;
  top: -50px;
  height: 400x;
  width: 400px;
}

.container-info {
  font-family: 'Nanum Myeongjo', serif;
  color: rgb(173, 144, 149);
  display: flex;
  flex-direction: column;
  grid-area: contactme;
}

.corner-image-bottom-left {
  height: 400px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  transform: rotate(180deg);
}

.top-nav-bar {
  background-color: rgb(248, 188, 197);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
}

nav > a {
  color: white;
  margin: auto 20px;
}

a {
  text-decoration: none;
}

.landing-page-title  {
  color: rgb(173, 144, 149);
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 6px;
  font-family: 'Great Vibes', cursive;
  text-align: center;
  margin-top: 30px;
}

.landing-page-subtitle  {
  color: rgb(173, 144, 149);
  font-size: 30px;
  font-weight: 10;
  margin-top: 10px; 
  text-align: center;
}

#position-info {
  font-size: 40px;
  font-weight: 200;
  /* font-family: 'Great Vibes', cursive; */
  letter-spacing: 10px;
}

#button-contact-me {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  border-radius: 20px;
  background-color: rgb(209, 95, 143);
  color: white;
  border-style: none;
}

@media(min-width: 1300px) {
  .container-main {
    width: 1300px;
    margin: auto;
  }
}

@media(max-width: 500px) {
  .container-main {
    display: flex;
    flex-direction: column;
  }

  nav > a {
    margin: auto 10px;
  }

  .corner-image-bottom-left {
    display: none;
  }

  #position-info {
    letter-spacing: normal;
    font-family: 'Great Vibes', cursive;
  }
}
