/* Navigation bar */
nav {
    text-transform: uppercase;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    width: 100%;
}

.nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    padding: 10px;
    color: #9d9d9d;
}

nav a:hover {
    color: #ff6900;
}
.active {
    color: #ff6900;
}

/* Body */
body {
    margin: 0;
    font-family: 'ProximaNova', Arial, sans-serif;
    align-items: center;
    flex-direction: column;
    width: 100%;
    display: flex;
    gap: 30px;
    background-color: #f2f2f2;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('media/background_hill.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 180%;
    background-position: right;
}

.content {
    display: flex;
    text-align: center;
    max-width: 100%;
    min-width: 40%;
    width: 900px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
}
.inner-flex-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.info-container,
.image-container {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
}
.info-container {
    font-size: 18px;
    font-style: italic;
}
hr {
    width:50%;
    text-align:center;
}

/* Data show */
details {
    user-select: none;
}

details>summary span.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
    margin-left: auto;
}

details[open] summary span.icon {
    transform: rotate(180deg);
}

summary {
    display: flex;
    cursor: pointer;
    background-color: grey;
    color: white;
}

summary::-webkit-details-marker {
    display: none;
}

/* Footer */
.footer {
    text-transform: uppercase;
    background-color: #e5e5e5;
    padding: 20px;
    text-align: left;
    width: 100%;
    font-size: 10px;
    position: fixed;
    bottom: 0;
}

.footer a {
    color: #505050;
    text-decoration: none;
    margin: 0 15px;
}

.footer a:hover {
    color: #ff6900;
}

.copyright {
    text-transform: none;
    font-size: 12px;
    color: #505050;
    text-align: right;
    margin-right: 30px;
}