/* -----------------------------
    General CSS
-------------------------------*/
body {
  font-family: Georgia, serif;
  overflow-x: hidden;
  background-color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, serif;
}

p {
  font-family: Georgia, serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* -----------------------------
    NAVIGATION
-------------------------------*/
.navigationSection {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  border-bottom: transparent;
  top: 0;
  position: fixed;
  z-index: 9999;
}

/* Style the links inside the navigation bar */
.navigationSection a {
  float: left;
  color: black;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 1.3vw;
}

/* Change the color of links on hover */
.navigationSection a:hover {
  color: #d92cf9;
}

.pageNavs {
  padding-right: 10%;
}

#navSpace {
  padding-right: 15px;
}

#homeLogo {
  color: #d92cf9;
  padding-left: 10%;
  font-weight: 600;
  font-size: 1.5vw;
}

/* -----------------------------
    MAIN SECTIONS
-------------------------------*/
.headSection {
  height: 700px;
  background: url("/src/images/projects/butterflyGameAreaWinSS.png") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 0.8;
}

.introSection {
  width: 100%;
  height: auto;
  background-color: white;
  padding: 50px 0;
  text-align: center;
}

.imageSection {
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  padding: 100px 0;
}

.videoSection {
  width: 100%;
  height: auto;
  background-color: white;
  text-align: center;
  padding: 100px 0;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.aboutSection {
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  padding: 100px 0;
}

.tailSection {
  width: 80%;
  left: 10%;
  position: relative;
  height: 100px;
  background-color: white;
  text-align: center;
  color: #888ea5;
  text-transform: capitalize;
  padding-top: 50px;
}

/* -----------------------------
    HEAD SECTION
-------------------------------*/
.mainTitleSection {
  width: 100%;
  text-align: center;
  align-items: center;
  vertical-align: middle;
  position: absolute;
  top: 50%;
}

.mainTitleSection h1 {
  font-weight: 900;
  font-size: 2.3vw;
  color: #fff;
}

.mainTitleSection a {
  width: auto;
  height: auto;
  border-radius: 3px;
  text-transform: capitalize;
  color: #fff;
  background: green;
  border: 12px solid green;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  font-size: 1.4vw;
  text-decoration: none;
}

.mainTitleSection a:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  background: darkgreen;
  border: 1px solid darkgreen;
}

/* -----------------------------
    INTRO SECTION
-------------------------------*/
.introTextBox {
  width: 80%;
  margin-left: 10%;
  font-size: 1.3vw;
  line-height: 1.8;
  text-align: left;
}

/* -----------------------------
    IMAGES SECTION
-------------------------------*/
.scrollButtons {
  width: 80%;
  position: relative;
  left: 15%;
  display: flex;
  justify-content: space-between;
}

.scrollButtons button {
  border-radius: 3px;
  text-transform: capitalize;
  background: none;
  color: black;
  border: none;
  transform: translate(-50%, -50%);
  font-size: 2.8vw;
}

.scrollButtons button:hover {
  background: white;
  border: 1px solid white;
}

.imagesRow {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  overflow-x: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.imagesRow::-webkit-scrollbar {
  display: none;
}

/* -----------------------------
    ABOUT SECTION
-------------------------------*/
.aboutSection p {
  padding: 0 10%;
  text-align: left;
  font-size: 1.3vw;
  line-height: 1.7;
}

.stackList {
  padding: 50px 10%;
  align-items: center;
  text-align: center;
}

#stackLogo {
  margin-left: 30px;
}

/* -----------------------------
    SMALL COMPONENT
-------------------------------*/
.titleBox {
  outline: 3px solid red;
  width: 200px;
  height: 200px;
  margin: 20px 0 0 30px;
}

#introImage {
  max-width: 50%;
  height: auto;
  margin-left: 5%;
}

#video {
  max-width: 80%;
  height: auto;
}

/*
Web page for mobile phone
*/
@media (max-width: 1000px) {
  .aboutSection p {
    font-size: 20px;
  }

  .scrollButtons button {
    font-size: 40px;
  }

  .introTextBox {
    font-size: 20px;
  }

  .mainTitleSection a {
    font-size: 20px;
  }

  .mainTitleSection h1 {
    font-size: 35px;
  }

  .navigationSection a {
    font-size: 17px;
  }

  #homeLogo {
    font-size: 20px;
  }
}
