body{
    background-color: black;
    font-family: sans-serif;
    width: 99%;
    height: 100%
}
header {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: row;
    font-family: sans-serif;
    height: 60;
}
.pages a{
    color: white;
    text-decoration: none;
    width: 200px;
    border: 1px solid black;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin: -3px;
    transition: 0.4s;
    font-size: 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.pages a:hover{
    color: black;
    background-color: white;
    transition: 0.4s;
}
h1{
    font-size: 60px;
    color: white;
    font-family: sans-serif;
}
.content{
    padding: 20px;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
}
p{
    font-size: auto;
    color: white;
    font-family: sans-serif
}
.photo{
    max-height: 200px;
    width: auto;
}

footer {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height: 20px;
    background-color: rgb(24, 24, 24);
    text-align: center;
    color: white;
    padding-bottom: 25px;
}
.avidrop{
    color: white;
    text-decoration: none;
    width: 135px !important;
    padding: 15px;
    margin: 0px !important;
    transition: 0.4s;
    font-size: 30px;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}
/* Styles for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content { 
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9); /* Match the dropdown background */
    min-width: 70px ; /* Same width as the toggle */
    z-index: 102; /* Ensure it’s on top of other elements */
    margin-top: 10px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 15px; /* Adjust font size as needed */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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