body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

nav {
    text-align: center;
    background-color: #444;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        bottom: 0;
        width: 100%;
    }

    .dropdown-content {
        bottom: 100%;
    }

    main {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .dropdown-content {
        top: 100%;
    }

    main {
        margin: 2rem auto;
        max-width: 70vw;
    }
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
}

nav a:visited {
    color: #aee4f1;
}

#selected-option {
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #444;
    width: 200px;
    max-width: 40vw;
    z-index: 1;
    flex-direction: column;
}

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

.dropdown-content a::before {
    content: "» ";
}

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

main {
    overflow-x: hidden;
    min-width: 70vw;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

textarea {
    max-width: 100%;
}

h1 {
    text-align: center;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.photo-gallery img {
    width: 100%;
    border-radius: 10px;
    margin: auto;
}

.photo-gallery div {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-gallery a {
    text-decoration: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px 15px;
    border: 1px solid;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.textright {
    text-align: right;
}

.socialmediaicon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    transition: filter 0.7s ease;
}

.socialmediaicon:hover {
    filter: brightness(2);
}

.socialgrid {
    display: flex;
    align-items: center;
    justify-content: center;
}
  
@keyframes pulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
}
  

.arrow {
    animation: pulse 1s infinite;
}

footer {
    padding: 1rem;
    background-color: #333;
    color: #fff;
    text-align: center;
    margin-top: auto;
}