@font-face {
  font-family: 'trade-gothic-ltstr-bold';
  src: url('/assets/trade-gothic-ltstr-bold.woff2') format('woff2'),
    url('assets/trade-gothic-ltstr-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-image: url("assets/index-background.png");
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  height: 100vh;
}

.main-doors {
  background-image: url("assets/door-background.png");
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: contain;
  width: 600px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.doors {
  display: flex;
}

.door {
  width: 600px;
  height: 230px;
  overflow: hidden;
  border-radius: 5px;
  margin: 5px;
}

@media only screen and (max-width: 600px) {

  .main-doors {
    width: 380px;
  }

  .door {
    width: 380px;
    height: 145px;
  }

  .doors {
    /*margin-top: 50px; */
  }
}

.boxes {
  /* transform: translateY(0); */
  transition: transform 1s ease-in-out;
}

.box {
  font-family: 'trade-gothic-ltstr-bold';
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;

}

.buttons {
  margin: 1rem 0 2rem 0;
  text-align: center;
}


.stanwell-btn {
  font-family: 'trade-gothic-ltstr-bold';
  cursor: pointer;
  font-size: 1.2rem;
  margin: 0 0.2rem;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  background-color: #F08A00;
  color: white;
  text-transform: uppercase;
  width: 320px;
  height: 50px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.info {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.logo img {
  height: 100px;
}

.main-title {
  font-family: 'trade-gothic-ltstr-bold';
  text-align: center;
  font-weight: 700;
  font-size: 35px;
  line-height: 54px;
  margin-bottom: 0px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.main-subtitle {
  font-family: 'trade-gothic-ltstr-bold';
  font-size: 20px;
  margin-top: 5px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.entrepreneur_image {
  text-align: center;
  margin-top: 50px;
}

.entrepreneur_image img {
  width: 500px;
}

@media only screen and (max-width: 600px) {
  .entrepreneur_image img {
    width: 100%;
  }
}