* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url(beach.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.navbar {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.logo {
    width: 60px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 10px;
    animation: bounce-in 2s ease-in-out;
}

@keyframes bounce-in {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
}

.navbar ul li {
    margin: 5px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.navbar ul li a button {
    background: none;
    border: 2px solid #00a2ff;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.5s, color 0.5s, transform 0.5s;
}

.navbar ul li a button:hover {
    background: #00a2ff;
    color: #fff;
    transform: scale(1.1);
}

.content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    padding: 10px;
}

.content h1 {
    font-size: 70px;
    margin-top: 100px;
    color: rgb(255, 195, 167);
    overflow: hidden;
    border-right: .15em solid rgb(255, 255, 255);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

.content h3 {
    font-size: 70px;
    color: rgb(255, 195, 167);
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: rgb(255, 255, 255);
    }
}

.content a h2 {
    color: rgb(0, 119, 255);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar ul li {
        margin: 5px;
    }

    .logo {
        width: 50px;
    }

    .content h1 {
        font-size: 40px;
        margin-top: 100px;
    }

    .content a h2 {
        font-size: 14px;
    }
    .content a h3 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .logo {
        display: none;
    }

    .navbar ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar ul li {
        margin: 5px;
    }

    .navbar ul li a button {
        padding: 5px 10px;
        font-size: 12px;
    }

    .content {
        padding-top: 100px; /* Add padding to account for the navbar */
    }

    .content h1 {
        font-size: 30px;
    }

    .content a h2 {
        font-size: 12px;
    }

    .content a h3 {
        font-size: 40px;
    }
}
