body {
    background-color: rgb(190, 221, 225);
    font-family: monospace;
}

a {
    color: rgb(16, 112, 112);
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://s3.amazonaws.com/shecodesio-production/uploads/files/000/162/609/original/IMG_3709.JPG?1744192671');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

.container {
    margin: 120px auto;
    max-width: 600px;
}

header {
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.5;
    color: rgb(97, 187, 197);
    padding: 5px 10px;
    background-color: white;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 15px;
    margin-bottom: 30px;
}

.form-container {
    padding: 15px 20px;
    background-color: white;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
    margin-bottom: 30px;
}

form {
    display: flex;
}

.hint {
    line-height: 1.5;
    margin-top: 5px;
    opacity: 0.6;
    font-size: 12px;
  }

.instructions {
    padding: 16px;
    border: 1px solid rgba(39, 33, 66, 0.5);
    width: 80%;
    font-size: 16px;
    border-radius: 20px;
    color: black;
}

.submit-button {
    margin-left: 10px;
    background-color: rgb(16, 112, 112);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 16px;
}

.travel {
    font-size: 16px;
    background-color: white;
    padding: 20px;
    line-height: 2;
    border-left: 3px solid rgb(16, 112, 112);
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
}

.hidden {
    display: none;
  }

.travel strong {
    color: rgb(16, 112, 112);;
}

footer {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
}

.generating {
    animation: blink-animation 1s steps(5, start) infinite;
  }
  
@keyframes blink-animation {
    to {
      visibility: hidden;
    }
}
@-webkit-keyframes blink-animation {
    to {
      visibility: hidden;
    }
}