* {
    margin: 0;
}

body {
    max-width: 1000px;
    display: block;
    margin: auto;
    background-image: url(/IMGs/BookingBackgroundIMG.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-position: center center;
    background-color: #232323;
}

header {
    padding: 2rem 0rem 0rem;
    background-color: #232323; 
}

header .info {
    color:  darkgray;
    padding: 0 5rem;
}

header h1 {
    display: flex;
    justify-content: center;

}


header .state {
    padding-bottom: .5rem;
}

header p {
    display: flex;
    justify-content: center;
}

header img {
    display: block;
    width: 45%;
    margin: auto;
    padding-bottom: 2rem;
}

.social-media {
    display: flex;
    margin: auto;
    width: 30%;
    padding-bottom: .75rem;
    gap: 1rem;
}

.social-media a img:hover {
    transition: .6s ease;
    background-color: #bbb;
    padding-bottom: 0;
}

.social-media a img {
    padding: 0 0;
    background-color: #717171;
    margin: auto;
    border-radius: 100%;
}

header ul {
    display: flex;
    justify-content: center;
    gap: 4rem;
    list-style-type: none;
    background-color: hsl(0, 0%, 17%);
    padding: 1.5rem 1.5rem;
    box-shadow: 0px 2px 2px 2px darkgray;
}

header ul li a{
    color: hsl(0, 0%, 47%);
    font-size: larger;
    text-decoration: none;
}

.active-page {
    color: hsl(0, 100%, 25%);
}

header ul li a:hover{
    color: hsl(0, 100%, 25%);
    text-decoration: overline;
    text-decoration-thickness: 3px;
}

.dropbtn {
    color: hsl(0, 0%, 47%);
    background-color: hsl(0, 0%, 17%);
    font-size: larger;
    font-family: 'Times New Roman', Times, serif;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: lightgray
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: hsl(0, 100%, 25%);
    text-decoration: overline;
    text-decoration-thickness: 3px;
}

main {
    background-color: hsl(0, 0%, 45%);
    padding: 2rem 5rem;
}

main h1 {
    display: flex;
    justify-content: center;
}

.contract {
    gap: 15rem;
    display: flex;
    justify-content: center;
}

.download img{
    width: 5vh;
    display: block;
    margin: auto;
}

.download p {
    font-size: 1rem;
    display: flex;
    justify-content: center;
}

.PDF {
    display: block;
    margin: auto;
    padding-top: 2rem;
    width: 80%;
    height: 1600px;
}
