body {
    margin: 0;
    padding: 0;
    background-color: black;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: auto;
    padding: 5px 10px;
}

.main-content h1 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 3em;
    color: orange;
    text-align: center;
}

.main-content h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1.5em;
    color: orange;
    text-align: center;
}

.main-content img {
    max-width: 100vw;
    max-height: 50vh;
    height: auto;
    width: auto;
}

.description {
    margin-top: 10px;
    font-size: 1.2em;
    color: white;
    text-align: center;
    width: 60%;
}

/* Flash message styling */
.messages {
    width: calc(100% - 80px); /* Full width minus 40px margins on both sides */
    margin: 20px 40px; /* Top and bottom margin of 20px, left and right 40px */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flash {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 10px;
}
