body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #333;
}
/* Header/Blog Title */
.header {
    padding: 30px;
    text-align: center;
    background: white;
    height: 300px;
    background-image: url(img/Tishey.JPG);
    background-size: cover;
    color: azure;
    transform: translate(0%, 10%);
    z-index: 0;
}
    
.header h1 {
    font-size: 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    background-color: #772146;
    padding: 10px;
    text-align: center;
    transform: translate(0%, 10%);
}

nav a {
    color: white;
    padding: 10px;
    margin: 5px;
    display: inline-block;
}

/* Style for the normal link */
a {
    color: #772146; 
    text-decoration: none;
}
  
/* Style for the highlighted link */
a:hover {
    color: white; /* Change the color on hover */
    background-color: #333; /* Add a background color on hover */
    border-radius: 5px; /* Optional: Add rounded corners */
}

.nav-bar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: #161616;
    padding: 12px 20px;
  }

.menu-icon {
    display: none;
    cursor: pointer;
    color: #ffbdbd;
    font-size: 24px;
}

video {
    max-width: 100%;
    height: auto;
}

/* Footer */
.footer {
    padding: 30px;
    text-align: center;
    background: #772146;
    color: azure;
    margin-top: 20px;
}

/*Navigation for Mobile Device*/
@media only screen and (max-width: 600px) {
    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        position: absolute;
        background-color: #333;
        z-index: 1;
    }

    .nav-links a {
        display: block;
        padding: 15px;
    }

    .menu-icon {
        display: block;
    }
}