@import url('https://fonts.googleapis.com/css2?family=Alice&family=Dancing+Script:wght@400..700&display=swap');

body {
    font-family: 'Alice', serif;
    margin: 10px;
    padding: 0;
    background: url('Travel.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#travel-container {
      background: #fff;
      border: 2px solid #1a1818;
      border-radius: 35px;
      padding: 20px;
      font-size:20px;
      max-width: 600px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-top: 90px;
      margin-bottom: 90px;
        margin-right: 500px;
      margin-left: 500px;
      height: 30%;

    }

    #travel-container h1 {
      margin-bottom: 10px;
      color: #000;
      font-family: dancing script, cursive;
      font-weight: 700;
    }

    #travel-container h2 {
      font-size: 26px;
      color:#000;
      margin-bottom: 20px;
      font-weight: 900;
    }

    #travel-container button {
      background-color: #3498db;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      transition: 0.3s;
      width: 50%;

    }

    #travel-container button:hover {
      background-color: #b11ec1;
    }