* {
    font-family: arial;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Navigation Bar */

nav{
    width: 100%;
    background-color: hsl(0, 0%, 80%);
}

.navbar ul{
    display: inline-flex;
    list-style-type: none;
    overflow: hidden;
}

.navbar a{
    color: black;
    text-decoration: none;
    padding: 8px 16px;
    margin-top: 32px;
    display: block;
}

.navbar h1{
    margin-top: 24px;
    margin-right: 36px;
}

.navbar .logo{
    margin: 16px;
    padding: 0;
}

.navbar a:hover{
    background-color: hsl(0, 0%, 90%);
}

.navbar .logo:hover{
    background-color: hsl(0, 0%, 80%);
}





/* Dropdown Menu */
.dropdown{
    display: inline-block;
}

.dropdown a{
    background-color: hsl(0, 0%, 80%);
    border: none;
    cursor: pointer;
}

.dropdown a{
    display: block;
    text-decoration: none;
}

.dropdown .content{
    display: none;
    position: absolute;
    background-color: hsl(0, 0%, 95%);
    min-width: 100px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.5);
}

.dropdown .content a{
    padding:16px;
    margin-top: 0px;
}

.dropdown:hover .content{
    display: block;
}

.dropdown:hover button{
    background-color:hsl(0, 0%, 70%);
}

.dropdown a:hover{
    background-color: hsl(0, 0%, 90%);
}



/* General Content */
.genpara {
    padding: 16px;
    text-indent: 32px;
}

.pdf {
    display: flex;
    justify-content: center;
}

.image {
    display: flex;
    justify-content: center;
}

.video {
    display: flex;
    justify-content: center;
}


/* Photo Carousel */
.carousel {
    margin: 100px auto;
    width: 100%;
    border: 2px solid black;
    display: flex;
    overflow-x: auto;
    pointer-events: none;

}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-right: 16px;
    animation: spin 60s infinite linear;
    z-index: -1;
}

.card {
    flex: 0 0 320px;
    height: 240px;
    padding: 0px;
    background: cornflowerblue;
    border-radius: 3px;
    text-align: center;
    align-content: center;
}

@keyframes spin {
    from {translate: 0;}
    to {translate: -100%;}
}