@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@100&display=swap');

* {
  margin: 0;
  padding: 0;
}



.nav {
  position: fixed;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 1em;
  justify-content: space-between;
  background: #fff;
  z-index: 999;
}

a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 10em 1em;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
}

.logo {
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat";
  padding: 0.5em;
  z-index: 1000;
}

.container {
  width: 100%;
  height: 15vh;
  background: #fff;
}

.content {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: relative;
}


.text-info{
  padding: 2em 3em;
  font-family: "Montserrat";
  font-size: 18px;
}

.text-info h1{
  margin-bottom: 2em;
}

@media (max-width: 900px){

  .nav{
    padding: 0;
  }

  .container {
    width: 100%;
    height: 15vh;
    background: #fff;
  }
  
  .content {
   display: none;
  }

  .text-info{
    padding: 2em;
    font-size: 15px;
  }
}
