body {
    background-color: #423637;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    margin: auto;
    justify-content: flex-start;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 350px;
    padding: 0 10px;
    box-sizing: border-box;
}

h1 {
    color: #F83237;
    font-size: 16px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(350px - 100px);
}

p {
    background-color: #9B5859;
    padding: 15px;
    border-radius: 5px;
    text-align: left;
    max-width: 350px;
    box-sizing: border-box;
}

button {
    background-color: #FFCD00;
    border: none;
    color: black;
    padding: 5px 8px;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #FAD232;
}

#image {
    max-width: 350px;
    height: auto;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#video {
    max-width: 350px;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 20px;
    box-sizing: border-box;
}
