/* Style for home, navigation and footer */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    color: white;
    /* min-height: 100vh; */

}

/* header */
.header {
    /* font-family: 'Righteous', cursive; */
    font-family: 'Cabin', sans-serif;
    /* font-weight: bold; */
    font-size: 1.2em;
    background: black;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 8vh;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    opacity: 1;
    z-index: 100;
}

.header a {
    text-decoration: none;
    color: white;
}
.header ul {
    list-style: none;
}

.nav-links {
    display: flex;
    align-items: center;
}
.nav-links li {
    padding: 0.5rem 1rem;
    transition: background 0.3s ease-in-out;
}
.nav-links li:hover {
    background-color: #6678B1;
}

/* Dropdown Menu */
.dropdown-list {
    position: relative
}

.dropdown-menu {
    position: absolute;
    background: black;
    /* width: 100%; */
    top: 30px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#sports {
    width: 200%;

}

.dropdown-list:hover .dropdown-menu{
    top: 40px;
    opacity: 1;
    visibility: visible;
}

/* Header Login Button */
#book-button {
    text-align: center;
    align-items: center;
    background-color: #44517B;
    border-radius: 200px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

#book-button:hover {
    background-color: #6678B1;
    transition: all 0.3s ease-in-out;
}

/* Footer reference */
.reference {
    background: #122331;
    /* position: relative; */
    /* margin-top: 50px; */
    /* top: 50px; */
    /* min-height: 10vh; */
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 10px;
    padding-bottom: 30px;
    z-index: 2;
}

.reference h3 {
    margin-top: 10px;
    font-size: 1.5em;
}

.reference p {
    padding-left: 20px;
}

html {
    scroll-behavior: smooth;
}