@charset "utf-8";

main {
    padding: 30px;
    min-height: 60vh;
}

body {
    font-family: 'Cascadia Mono Extralight', monospace;
    color: #0c1f24;
    margin: 0;
    padding: 0;
}

header h1 {
    background-color: #24130C;
    color: #a39189;
    padding: 20px;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
}

nav {
    background-color: #89a397;
    padding: 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    list-style: none;
    margin: 0 15px;
}

nav a {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

nav a:hover {
    color: #a39189;
    text-decoration: underline;
}

nav a:visited {
    color: #0c2419;
}

nav a:active {
    color: #24130C;
}

#content-wrapper {
    background-color: #0c2419;
    border: 5px solid #5D6573;
    width: 85%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 38px;
    font-weight: bold;
    color: #a39189;
    text-align: center;
    margin-bottom: 30px;
}

.title-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-logo {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.photo-gallery {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.photo-description {
    width: 50%;
    padding-right: 20px;
}

.photo-description h3 {
    font-size: 24px;
    font-weight: bold;
    color: #24130C;
    margin-bottom: 15px;
}

.photo-description p {
    font-size: 16px;
    color: #0c1f24;
}

.photo-image {
    width: 45%;
    display: flex;
    justify-content: center;
}

.photo-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input[type="text"], textarea, select, input[type="date"], input[type="range"] {
    padding: 10px;
    border-radius: 5px;
    border: 3px solid black;
    margin-top: 5px;
    font-size: 16px;
    background-color: white;
}

input[type="submit"] {
    background-color: #0c1f24;
    color: #fdfefe;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #24130c;
}

footer {
    background-color: #89a397;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

footer p {
    margin: 5px 0;
    font-size: 16px;
}

.title-with-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.title-logo {
    width: 50px;
    height: auto;
    margin-right: 15px;
}
