@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: Barlow;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: white;
}
.header {
    text-align: left;
    padding: 20px 20px;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
}

.header-text-container {
    display: flex;
    flex-direction: column;
}

.herobanner {
    text-align: center;
    padding: 120px 0;
    background-image: url('../assets/wakeboardcomo.JPG');
    background-size: cover;
    background-position: center 45%;
    position: relative;
}
.herobanner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}
h1 {
    margin: 0;
    font: 25px Barlow;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.content {
    margin: 20px;
}

.top-nav {
    position: absolute;
    top: 35px;
    right: 20px;
    z-index: 10;
}

.top-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.top-nav ul li {
    display: inline-block;
}

.top-nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: background-color 0.3s ease;}.top-nav ul li a:hover {
    color: rgba(255, 159, 3, 0.7);
}

.header-link {
    text-decoration: none;
    color: inherit;
}
