body {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-family: "Roboto", sans-serif;
  font-family: "Ubuntu", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: rgb(110, 100, 128);
  overflow-x: hidden;
}

.social-logo-box {
  position: fixed;
  z-index: 6;
  top: 85vh;
  left: 82%;
  width: 200px;
}

.social-logo {
  cursor: pointer;
  transition: 0.2s;
}

.social-logo:hover {
  transform: scale(1.2);
}

.home-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  flex-direction: column;
}

.background {
  background: url("../../assets/jETMze.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: flex;
  position: absolute;
  z-index: -1;
}

.home-main img {
  z-index: 1;
  width: 1000px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.links-box {
  height: 75px;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.links-box a {
  border: 2px solid #9cacca;
  background-color: transparent;
  width: 40%;
  height: 60px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 25px;
  transition: 0.2s;
  cursor: pointer;
}

.links-box a:hover {
  background-color: white;
  color: black;
}

.links-box a:nth-child(2) {
  background-color: rgb(250, 210, 87);
  border: 0;
  color: black;
}

:root {
  --navbar-color: rgb(28, 115, 217);
}

.navbar-main {
  width: 100%;
  height: 100px;
  color: white;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  z-index: 4;
  transition: 0.2s;
}

.navbar-main h2 {
  font-size: 35px;
}

.navbar-buttons-box {
  width: 20%;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-main a {
  text-decoration: none;
  color: white;
}

.navbar-buttons-box a {
  height: 75px;
  width: 10%;
  font-size: 23px;
  border: 0;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-buttons-box a:hover {
  color: rgb(44, 41, 51);
}

.navbar-buttons-box a:nth-child(4) {
  background-color: gold;
  color: #162d56;
}

.navbar-main img {
  height: 70px;
  transition: 0.2s;
}

.navbar-main img:hover {
  transform: scale(1.1);
}

.more-info {
  width: 100%;
  height: 300vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(110, 100, 128);
}

.more-info h2 {
  font-size: 80px;
  font-weight: lighter;
  color: white;
}

.info-box {
  width: 100%;
  height: 290vh;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}

.info-content {
  color: black;
  background-color: rgb(224, 209, 252);
  width: 950px;
  height: 30vh;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  box-shadow: 1px 4px 43px -7px rgb(0, 0, 0);
  position: relative;
}

.info-content:nth-child(2n) {
  margin-left: 1100px;
}

.info-content:nth-child(1n) {
  margin-right: 600px;
}

.info-content img {
  width: 400px;
}

.info-text {
  width: 50%;
}

.info-text h3 {
  font-weight: lighter;
  font-size: 45px;
}

.info-text p {
  font-size: 20px;
}

.images-main {
  width: 100%;
  height: 75vh;
}

.images-main img {
  width: 33%;
  cursor: pointer;
}

@media only screen and (max-width: 920px) {
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", sans-serif;
    background-color: rgb(110, 100, 128);
  }
  .home-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
  }
  .background {
    background: url("../../assets/jETMze.png");
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    display: flex;
    position: absolute;
    z-index: -1;
    background-size: cover;
  }
  .home-main img {
    z-index: 1;
    width: 90%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  .links-box {
    justify-content: center;
  }
  .links-box a {
    display: none;
  }
  .links-box a:nth-child(2n) {
    display: flex;
    width: 60%;
    height: 10vh;
  }
  .navbar-main {
    display: none;
  }
  .more-info {
    display: none;
  }
  .images-main {
    display: none;
  }
  .social-logo {
    height: 6vh;
  }
  .social-logo-box {
    left: 65%;
    width: 40%;
  }
}
@media only screen and (max-height: 690px) and (min-height: 421px) {
  .info-content {
    height: 250px;
  }
}
@media only screen and (max-width: 1600px) and (max-height: 420px) {
  .home-main img {
    z-index: 1;
    width: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  .links-box {
    justify-content: center;
  }
  .links-box a {
    display: none;
  }
  .links-box a:nth-child(2n) {
    display: flex;
    width: 70%;
    height: 12vh;
  }
  .navbar-main {
    display: none;
  }
  .more-info {
    display: none;
  }
  .images-main {
    display: none;
  }
  .social-logo {
    height: 10vh;
  }
  .social-logo-box {
    left: 80%;
    width: 40%;
    top: 85vh;
  }
}
@media only screen and (max-width: 1340px) and (min-width: 921px) {
  .info-content {
    width: 700px;
  }
  .social-logo {
    width: 60px;
    height: 60px;
  }
  .social-logo-box {
    left: 80%;
  }
  .images-main {
    height: 40vh;
  }
  .info-content:nth-child(2n) {
    margin-left: 0px;
  }
  .info-content:nth-child(1n) {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 2400px) {
  .info-content {
    width: 50%;
  }
  .info-content img {
    width: 45%;
  }
}
/*# sourceMappingURL=HomeStyle.css.map */