@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');

body {
  margin: 0px;
  font-family: 'Gotu', sans-serif;
}

#home .container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
}
#home .container > .networks-container {
  display: none;
}
#home .bg-container {
  height: 100vh;
  width: 80vw;
}
#home .bg-container > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#home .content-container {
  position: relative;
  height: 100vh;
  width: 20vw;
}
#home .content-container > h1 {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 8vh;
  margin-top: 10vh;
  color: #A12B19;
}
#home .content-container > h2 {
  font-size: 4vh;
  white-space: pre-wrap;
  color: #35270F;
  padding-left: 20px;
  padding-right: 20px;
}

#home .content-container .networks-container {
  position: absolute;
  width: 100%;
  bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

#home .networks-container .brand-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}   
#home .networks-container .brand-container img {
  height: 40px;
  opacity: 0.6;
  transition: all 0.3s;
}
#home .networks-container .brand-container img:hover {
  opacity: 1;
  transition: all 0.3s;
}

.youtube {
  color: #FF0000;
  fill: #FF0000;
}

@media (max-width: 640px) {
  #home .container {
    flex-direction: column-reverse;
  }
  #home .bg-container {
    height: 70vh;
    width: 100vw;
  }
  #home .content-container {
    height: 20vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #home .content-container > h1 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 30px;
  }
  #home .content-container > h2 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  #home .container > .networks-container {
    height: 10vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }
  #home .container .content-container .networks-container {
    display: none;
  }
}
