@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    height: 80px;
    background-color: tomato;
    display: flex;
    padding: 0 20px;
}

nav{
    flex: 1;
}

nav ul{
    display: flex;
    height: 80px;
    align-items: center;
    gap: 10 px;
    justify-content: space-around;
}

nav ul li {
    list-style-type: none;
}

nav ul li a{
    text-decoration: none;
    color: white;
}
a.active{
    font-weight: bold;
}

main{
    min-height: calc(100vh - 80px - 70px);
    background-color: aqua;
    padding: 20px;
}

main h1{
  text-align: center;  
  font-family: "Orbitron", sans-serif;
}

main figure, section div{
    width: 50%;
}

main div{
    padding-left: 20px;
}

main img{
    width: 100%;
}

main section {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
}

main h2{
    width: 100%;
    padding: 10px;
}

main li{
    margin-left: 20px;
}

main iframe{
    width: 100%;
}

footer{
    height: 70px;
    background-color: blueviolet;
}

footer address{
    color: white;
    height: 70px;
    text-align: center;
    line-height: 70px;
}
.booking_form{
    width: 500px;
    border: 2px solid blue;
    margin: 30px auto;
}