body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #1a1a2e;
}

.header, .footer {
    background: #1a1a2e;
    color:#EAE8DD;
}

.header {
    height: 72px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;

}

.footer {
    height: 72px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    margin-top: auto;
    padding: 0 40px;
}

.items a {
    text-decoration: none;
    color: #EAE8DD;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #EAE8DD;
    padding-top: 20px;
    padding-bottom: 20px;
}

.spacer {
    display: flex;
    flex: 1;
    background-color: #EAE8DD;
    margin: 0;
}

.content img#today-image {
    max-width: 100%;
    max-height: 75vh;
    height: auto;
    width: auto;
    object-fit: contain;
}

#guess-box {
    flex: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#score-box{
    flex: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.all-dropdowns {
    flex: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.items {
    padding: 5;
}

button {
    background: #1a1a2e;
    color:#EAE8DD;
}

.game-modes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.mode-box {
    display: block;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
}

.mode-box:hover {
    background-color: #e0e0e0;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mode-box h2 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.mode-box p {
    margin: 0;
    color: #666;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.about-content h2 {
    color: #2c3e50;
    margin-top: 0;
}

.about-content h3 {
    color: #2c3e50;
    margin-top: 20px;
}

.about-content p {
    color: #666;
    line-height: 1.6;
}

.about-content ul {
    color: #666;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

#answer-box {
    flex: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 20px;
    max-width: 600px;
    width: 100%;
}

#answer-box.visible {
    display: flex;
}

#score {
    color: #2c3e50;
    margin-bottom: 10px;
}

#answer {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

#answer a {
    color: #1a1a2e;
    text-decoration: underline;
}