@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");

html,
body {
  margin: 0;
  padding: 0;
}
body {
  background-color: black;
  overflow-x: hidden;
}

#menu {
  display: block;
  width: 100px;
  height: 100px;
  cursor: pointer;
  margin: 3rem 0rem;
  position: absolute;
  right: 0px;
}
#circle1 {
  height: 90px;
  width: 90px;
  background-color: rgb(8, 8, 8);
  transition: 300ms;
  border-radius: 50%;
  transform: translate(-5px, -50%);
  position: fixed;
  z-index: -10;
  box-shadow: 0px 0px 10px;
}
.bar {
  height: 7px;
  width: 60px;
  background-color: rgb(255, 255, 255);
  display: block;
  border-radius: 7px;
  transition: 300ms;
}
#bar1 {
  transform: translate(10px, -7px);
}
#bar2 {
  transform: translateX(10px);
}
#bar3 {
  transform: translate(-30px, 7px);
  width: 30px;
  float: right;
}
.nav li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 8rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.nav li a:hover {
  color: rgb(237, 25, 108);
  transition: 300ms ease;
}
.nav li {
  list-style: none;
  padding: 16px 0;
  text-align: right;
}
.nav {
  padding: 0;
  margin: 10rem 3rem;
  transition: 0.3s ease;
  display: none;
}
.menu-bg,
#menu-bar {
  top: 0;
  right: 0;
  position: fixed;
}
.menu-bg {
  z-index: 100;
  width: 0;
  height: 0;
  margin: 0;
  background: radial-gradient(circle, #141414, #000000);
  border-radius: 0%;
  transition: 00ms ease;
}
#menu-bar {
  z-index: 200;
}
.change-bg {
  width: 100vw;
  height: 100vh;
}
.change .bar {
  background-color: rgb(255, 255, 255);
}
.change #bar1 {
  transform: translateY(10px) translateX(25px) rotateZ(45deg);
  width: 30px;
}
.change #bar3 {
  transform: translateY(-4px) translateX(-45px) rotateZ(-45deg);
}
.change #bar2 {
  opacity: 0;
}
.change {
  display: block;
}

.wrapper {
  display: flex;
  position: relative;
  background-color: #000000;
}

.logo-container {
  display: flex;
  position: fixed;
  left: 0;
}
.blanks-logo-menu {
  width: 10rem;
  margin-left: 3rem;
  margin-top: 2rem;
}
.vector-lines {
  position: relative;
  transform: rotateZ(180deg);
  height: 20vh;
  width: 100%;
  z-index: -1;
}

.hello-title {
  text-align: center;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: auto 20%;
}

.hello {
  text-decoration: none;
  color: rgb(250, 250, 250);
  font-size: 3rem;
  font-weight: 900;
  font-family: "montserrat", sans-serif;
  text-transform: uppercase;
}
.hello span {
  font-size: 6rem;
}
main {
  position: relative;
  margin: 10% auto;
}
main p {
  color: rgb(250, 250, 250);
  font-family: "montserrat", sans-serif;
  margin: 0% 20%;
  padding: 2rem;
  text-align: center;
  font-size: 4em;
}
main p:hover {
  color: rgb(237, 25, 108);
  opacity: 50%;
  transition: 500ms ease;
}
p .email {
  margin-right: 2rem;
}
a:link {
  text-decoration: none;
}
main span {
  font-size: 1.8rem;
  font-weight: 900;
}
span:hover {
  opacity: 50%;
  transition: 2000ms ease;
}
strong {
  color: rgb(237, 25, 108);
}

.menu-last-footer {
  display: flex;
  position: relative;
  bottom: 0;
  align-items: center;
  font-weight: 900;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 3rem;
}
.compliance {
  display: flex;
  font-family: "montserrat", sans-serif;
  font-size: 0.6rem;
  justify-content: flex-end;
}
.compliance p {
  color: rgb(250, 250, 250);
}
.GMT {
  display: flex;
  justify-content: space-between;
  color: rgb(250, 250, 250);
  font-family: "montserrat", sans-serif;
}
.cities {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.time {
  font-size: 0.8rem;
  font-family: "montserrat", sans-serif;
}
.blanks-logo-footer {
  width: 10%;
  margin-bottom: 10rem;
}

@media (max-width: 700px) {
  .hello-title {
    margin: 0 10%;
  }
  .hello {
    font-size: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
  }
  main p {
    text-align: center;
    font-size: 2rem;
  }
  .email {
    font-size: 1.3rem;
    margin: 0 auto;
  }
  .hello-title span {
    font-size: 3rem;
  }
  .hello-title a {
    font-size: 2rem;
  }
  #menu {
    margin: 3rem 0rem;
    transform: scale(75%);
  }
  .nav li a {
    font-size: 3rem;
  }
  .nav li {
    padding-top: 2rem;
  }
  .nav {
    margin: 6rem 2rem;
  }
}
