* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: black;
    color: white;
}

header {
    position: relative;
}

header img {
    width: 100%;
    height: auto;
}

.header-content {
    position: relative;
}

.header-text {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    color: white;
}

.header-text h1 {
    font-size: 4.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.header-text h2 {
    font-size: 2.0em;
}

main {
    padding: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}

.text {
    flex: 1 1 40%;
    padding-right: 20px;
}

.image {
    flex: 1 1 40%;
}

.image img {
    width: 70%;
    height: auto;
}

blockquote {
    font-size: 3.5em;
    font-style: italic;
    margin-bottom: 10px;
    line-height:110%;
}

cite {
    display: block;
    margin-top: 5px;
    font-size: 0.6em;
    text-align: right;
}

.media {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    font-size: 0.8em;
    margin-top: 20px;
}
