/* -----------------------------
    COMMON
-------------------------------*/
.body {
  overflow: hidden;
  font-family: Georgia, serif;
}

/* -----------------------------
    MAIN SECTIONS
-------------------------------*/
.head-section {
  background-image: url("/src/images/JimSelf.jpg");
  opacity: 0.9;
  background-size: cover;
  background-position: center;
  height: 1200px;
}

.intro-section {
  height: auto;
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 5% 0;
  font-size: 1.4vw;
}

.goal-section {
  width: 100%;
  padding: 5% 0;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #f0f0f0;
  font-size: 1.4vw;
}

/* -----------------------------
    INTRO SECTION
-------------------------------*/
.intro-section > h1 {
  position: relative;
  text-align: center;
}

/* All intro facts container */
.intro-fact-container {
  width: 80%;
  margin-left: 10%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding-top: 10%;
  padding-bottom: 5%;
}

/* Single intro fact container */
.intro-fact-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  padding-bottom: 15%;
}

.intro-fact-box > img {
  transition: transform 0.5s ease;
}

.intro-fact-box > img:hover {
  -webkit-transform: scale(1.5); /* or some other value */
  transform: scale(1.5);
}

.intro-fact-text-box {
  display: flex;
  flex-direction: column;
  padding-right: 10%;
}

.intro-fact-text-box > h3,
.intro-fact-text-box > p {
  transition: all 0.5s ease-in-out;
}

.intro-image-row {
  display: flex;
  flex-direction: row;
}

.intro-image-row > img {
  width: 33%;
  transition: transform 0.5s ease;
}

.intro-image-row img:hover {
  -webkit-transform: scale(1.5); /* or some other value */
  transform: scale(1.5);
}

#intro-media-box {
  max-width: 50%;
  height: auto;
}

/* -----------------------------
    GOAL SECTION
-------------------------------*/
.goal-section > h1 {
  position: relative;
  text-align: center;
}

/* All goals container */
.goal-container {
  width: 80%;
  margin-left: 10%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding-top: 10%;
  padding-bottom: 5%;
}

/* Single goal container */
.goal-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  padding-bottom: 15%;
}

.goal-box > img {
  transition: transform 0.5s ease;
}

.goal-box > img:hover {
  -webkit-transform: scale(1.5); /* or some other value */
  transform: scale(1.5);
}

.goal-text-box {
  display: flex;
  flex-direction: column;
  padding-left: 10%;
}

.goal-text-box > p,
.goal-text-box > h3 {
  transition: all 0.5s ease-in-out;
}

.design-text {
  font-size: 50px;
  text-align: left;
  color: white;
  margin-left: 10%;
  font-family: Georgia, serif;
  text-shadow: 5px 5px gray;
}

.lineheight {
  line-height: 150%;
}

/*
Web page for monitor
*/
@media (min-width: 1000px) {
  .nav {
    display: none;
  }
}

/*
Web page for mobile phone
*/
@media (max-width: 1000px) {
  .intro-section {
    font-size: 17px;
  }

  .intro-fact-box {
    flex-direction: column;
  }

  .intro-fact-text-box {
    padding-right: 0%;
  }

  .intro-image-row {
    flex-direction: column;
  }

  .intro-image-row > img {
    width: 100%;
  }

  #intro-media-box {
    max-width: 100%;
  }

  .goal-section {
    font-size: 17px;
  }

  .goal-box {
    flex-direction: column;
  }

  .goal-text-box {
    padding-left: 0%;
  }

  .navigation {
    display: none;
  }

  /* Style the navigation menu */
  .topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
  }

  /* Hide the links inside the navigation menu (except for logo/home) */
  .topnav #myLinks {
    display: none;
  }

  /* Style navigation menu links */
  .topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 24px;
    display: block;
  }

  /* Style the hamburger menu */
  .topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  /* Add a grey background color on mouse-over */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }

  /* Style the active link (or home/logo) */
  .active {
    background-color: gray;
    color: white;
  }

  .nav {
    margin: auto;
    border-radius: 10px;
    color: white;
  }
}

/*
Web page for tablet
*/
@media (max-width: 1000px) and (min-width: 768px) {
}
