body {
    background-color: #008a8c;
    margin: 0;
    font-family: monospace;
}
#titlebar {
    background-color: white;
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
#right {
    display: flex;
    justify-content: center;
    align-items: center;
}
#right img {
    width: 350px;
    height: auto;
    display: block;
    object-fit: contain;
    background: transparent;
}
.button {
    display: inline-block;
    padding: 14px 24px;
    background: white;
    color: #008a8c;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
}