:root {
    --red: #AD0837;
    --light-yellow: #ffD085;
    --orange: #FAC269;
    --grey: #899FB3;
    --blue: #2799FA;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: #ffffff;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

article {
    flex: 1;
}

hr {
    border-top: 3px double #000000;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 -15px;
    
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.box {
    display: flex;
    align-items: center;
}

header {
    margin-top: 5%;
}

.header-text {
    margin-left: 15%;
}

h1 {
    color: var(--blue);
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.content_1 {
    border-radius: 25px;
    background: var(--light-yellow);
    padding: 2%;
}

.content_2 {
    border-radius: 25px;
    background: var(--orange);
    padding: 2%;
}

.inner_content {
    border-radius: 15px;
    border: 2px solid var(--red);
    background: #ffffff;
    padding: 1%;
}

footer {
    color: #000000;
}

img {
    margin-left: 5%;
    margin-right: 5%;
    max-width: 90%;
}

dd{
    padding-left: 0.5%;
}

