* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background-image: url('GalleryPhotos/Gallery/image00015 (Copy).jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.content {
    text-align: center;
}

.content a {
    text-decoration: none;
    display: flex;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff;
    padding: 20px 70px;
    border-radius: 50px;
    margin-top: 20px;

    /* Center the content using flexbox */
    align-items: center;
    justify-content: center;
}
.navbar {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd; /* You can choose your own hover background color */
    color: black;
}


@media (max-width: 768px) {
    .content a {
        font-size: 18px;
        padding: 14px 40px;
        margin-right: 0;
    }
    .hero{
        flex-direction: column;
    }
}
