html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Times New Roman', Times, serif;
}

.background-wrapper {
    position: relative;
    height: 100vh;
    background-image: url("images/babysheep.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /*dark overlay*/
    z-index: 1;
}

.about {
    background-color: #404040;
    border: 2px solid #333;
    padding: 20px;
    margin: 20px auto;
    border-radius: 12px;
    width: fit-content;
}

.content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 20vh
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8%;
    overflow: hidden;
    z-index: 1000;
    background-color: #404040;
    border: 2px solid #333;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
}

.navbar button {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.menu-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.menu-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.menu:hover .menu-content {
    display: block;
}