@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif;
    background-color: #ffffff;
    color: #000;
}

header {
    width: 100%;
    background-color: #EFE0D5;
    /*background-image: url('assets/images/header_cobogo.png');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    text-align: center;
    color: #E7362A;
}

main {
    width: 90%;
    max-width: 800px;
    margin: 20px auto; /* center horizontally with space on top/bottom */
    padding: 1rem;
}

main img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

footer {
    width: 100%;
    background-color: #35405d;
    color: #f4f9ff;
    text-align: center;
    padding: 15px;
    margin-top: 20px; /* optional spacing from main content */
}
#file-entry {
	color: #000;
}

#title {
    font-size: 50px;
    font-weight: bold;
    margin: 0;
    color: #E7362A;
    font-family: 'CentralFont' /*, sans-serif*/;
    text-shadow: 1px 1px 2px #EFE0D5;;
}

#globe-container {
    flex: 1; /* Expands to fill the available space */
    width: 100%;
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 800px;
    align-items: center;
    overflow: hidden; /* Hide any overflow */
}

.footer-button {
    padding: 10px 20px;
    border: 0px solid #626a6c;
    background-color: #F8F5E5;;
    color: #E7362A;
    cursor: pointer;
    border-radius: 30px;
    font-size: 14px;
    transition: background-color 0.3s, border-color 0.3s;
}

.footer-button:hover {
    background-color: #444444;
    color: #f4f9ff;
    border-color: #FFFFFF;
}

.project-description,
.samples-section {
    margin-top: 24px;
}

.project-description h2,
.samples-section h2 {
    color: #f99a36e;
    margin-bottom: 10px;
}

.project-description p {
    line-height: 1.5;
    color: #1f1f1f;
    text-align: justify;
}

.sample-players {
    display: grid;
    gap: 12px;
}

.sample-player-item {
    border: 0;
    border-radius: 10px;
    padding: 10px;
    background-color: #F8F5E5;
}

.sample-player-title {
    margin-bottom: 8px;
    color: #E7362A;
    font-size: 14px;
}

.sample-player-item audio {
    width: 100%;
}

