
.front-page {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.front-page-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: aqua; */
    height: 100vh;
  }

  .fp-title-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-color: yellow; */
    flex-basis: 40%;
  }

  .fp-title-filler {
    flex-basis: 60%;
    /* background-color: red; */
  }

.fp-title-link {
  width: 100%;
  display: flex;
  justify-content: center;
  /* background-color: yellow; */
  flex-basis: 40%;
}

.fp-title-image{
  width: 75%;
}

.fp-image {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: lightblue; */
  width: 100%;
  flex-basis: 25%;

}

.hero-image{
  width: 100%;
}

.buttons{
  display: flex;
  flex-direction: row;
  /* background-color: beige; */
  justify-content: space-between;
  width: 93%;
  flex-basis: 45%;
  margin-top: 30px;
}

.button{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 180px;
  background-color: rgb(207,211,250);
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
}

.button:hover, .button:focus {
  background-color: #bfc3e6;
  text-decoration: underline;
}

/* Media queries for small screens */
@media screen and (max-width: 768px) {
  .buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-top: -20px;
  }
  
  .button {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  } 
}
  

@media screen and (max-width: 480px) {
  .buttons {
    gap: 12px;
  }
  
  .button {
    width: 160px;
    height: 35px;
  }

}





