body {
    height: 100vh;
    width: 100vw;
    background-image: url('/bgim/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  nav{
    background-color: rgba(90, 48, 0, 0.356);
    padding: 6px 0;
    margin: 0;
    border-radius: 26px;
    height: 40px;
    box-shadow: 0 0 10px rgba(173, 0, 0, 0.699);
}
  
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    margin-top: 4px;
}
  
li{
    display: inline-block;
    
}
  
.link{
    display: inline-block;
    padding: 10px 30px;
    border-radius: 20px;
    margin-right: 10px;
    background-color: rgb(253, 144, 2);
    color: black;
    text-decoration: none;
    height: 10px;
    display: flex;
   align-items: center;
   justify-content: center;
}

.booking-button {
    background-color: rgb(226, 55, 3);
}
  
.link:hover{
    background-color: #ff9999; /* Change the color on hover */
}

  h1 {
    font-size: 50px;
    font-family: 'Imprint MT Shadow Regular';
    text-align: center;
    font-weight: lighter;
    transform: translate(0%, -60%);
  }
  
  .container {
    position: absolute;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    height: auto;
    width: 40vw;
    left: 50%;
    
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border: 0.5px solid rgba(0, 0, 0, 0.253);
    justify-content: center;
    background-color: rgba(238, 255, 0, 0.281);
    align-items: center;
  }
  
  input[type="text"] {
    width: 70%;
    padding: 10px;
    margin: 10px 20px;
    display: inline-block;
    border: none;
    background: #f5f5f59a;
    border-radius: 15px;
  }
  
  .registerbutton {
    background-color: #29a329;
    color: white;
    padding: 15px 20px;
    margin: 10px 0px;
    border: none;
    cursor: pointer;
    width: 20%;
    font-weight: bold;
    border-radius: 18px;
  }
  
  .registerbutton:hover {
    background-color: #21d621;
  }
  