body {
  height: 100%;
  margin: 0;
  background: #70370B;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.links {
  height: 100%;
  display: flex;
  justify-content: space-around;
  margin: auto;
  align-items: center;
  color: #EF7CBF;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 25px;
  padding-top: 10px;
  margin: 5px;
}

.link {
  text-decoration: none;
  color: #EF7CBF;
}

.content {
  display: flex;
  justify-content: center;
  color: #EF7CBF;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 40px;
}

.box {
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

#one {
  width: 400px;
  height: 500px;
  object-fit: cover;
  margin-left: 0;
}

.text {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  margin-top: 0;
  width: 750px;
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 30px;
}

.btn {
  height: 60px;
  width: 300px;
  background-color: #FC7724;
  color: white;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 20px;
  margin-top: 50px;
  margin-left: 200px;
}

.lower {
  margin-top: auto;
  height: 65px;
  width: 100%;
  background-color: #FC7724;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.lower p {
  color: white;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 20px;
}

@media (max-width: 768px) {
  .links {
    flex-direction: column;
    font-size: 18px;
    gap: 10px;
  }

  .box {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  #one {
    width: 90%;
    height: auto;
    margin: 0;
  }

  .text {
    margin: 20px 0;
    width: 90%;
    font-size: 20px;
    align-items: center;
    text-align: center;
  }

  .btn {
    width: 80%;
    margin: 30px auto 0;
    font-size: 18px;
  }

  .lower {
    flex-direction: column;
    height: auto;
    padding: 10px;
    gap: 10px;
  }

  .lower p {
    font-size: 18px;
  }

  .header {
    padding-top: 10px;
    margin: 0;
  }

  .content {
    font-size: 30px;
    text-align: center;
  }
}