* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    background-color: hsl(218, 22%, 67%);
    width: 100%;
}

article {
    background-color: white;
    width: 100%;
    padding: 30px;
    place-items: center;
}

h1 {
    font-weight: 700;
    font-size: 1em;
    padding-bottom: 20px;
    color: hsl(179, 62%, 43%);
}

.next_headline {
    width: 100%;
    font-size: 1em;
    font-weight: 700;
    padding-bottom: 20px;
    color: hsl(71, 73%, 54%);
}

.paragraph_after_next_headline {
    width: 100%;
    font-size: 0.9em;
    font-weight: 400;
    color: hsl(218, 22%, 67%);
}

section {
    background-color: hsl(179, 62%, 43%);
    width: 100%;
    padding: 30px;
    place-items: center;
}

h3 {
    font-weight: 700;
    font-size: 1em;
    padding-bottom: 20px;
    color: white;
}

strong {
    font-weight: 700;
    font-size: 2em;
    color: white;
}

.first_paragraph_after_headline_3 {
    width: 100%;
    font-size: 1em;
    font-weight: lighter;
    color: white;
    padding-bottom: 20px;
}

.first_paragraph_after_headline_3 :last-child {
    opacity: 0.5;
    font-size: 1em;
}

.second_paragraph_after_headlin_3 {
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    color: white;
    padding-bottom: 20px;
}

a button {
    background-color: hsl(71, 73%, 54%);
    padding: 9px 120px;
    width: 100%;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;
    color: white;
    transition: all 0.5s ease 0s;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

button:hover{
    background-color:  hsl(71, 59%, 43%);
}

aside {
    background-color: hsl(179, 66%, 49%);
    width: 100%;
    padding: 30px;
}

.third_paragraph_after_headline_3 {
    width: 71.25%;
    font-size: 1em;
    font-weight: lighter;
    color: white;
    list-style: none;
    opacity: 0.5;
}

.attribution {
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    color: white;
    background-color: black;
}

@media screen and (min-width: 786px) {
body {
     background-color: hsl(218, 22%, 67%);
     width: 100%; 
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
    
article {
    background-color: white;
    width: 100%;
    padding: 50px;
    place-items: center;
}

h1 {
    font-weight: 700;
    font-size: 2em;
    padding-bottom: 20px;
    color: hsl(179, 62%, 43%);
}

.next_headline {
    width: 100%;
    font-size: 2em;
    font-weight: 700;
    padding-bottom: 20px;
    color: hsl(71, 73%, 54%);
}

.paragraph_after_next_headline {
    width: 100%;
    font-size: 2em;
    font-weight: 400;
    color: hsl(218, 22%, 67%);
}

section {
    background-color: hsl(179, 62%, 43%);
    width: 50%;
    padding: 50px;
    place-items: center;
}

h3 {
    font-weight: 700;
    font-size: 1.5em;
    padding-bottom: 20px;
    color: white;
}

strong {
    font-weight: 700;
    font-size: 2.5em;
    color: white;
}

.first_paragraph_after_headline_3 {
    width: 100%;
    font-size: 1.5em;
    font-weight: lighter;
    color: white;
    padding-bottom: 20px;
}

.first_paragraph_after_headline_3 :last-child {
    opacity: 0.5;
    font-size: 1.5em;
}

.second_paragraph_after_headlin_3 {
    width: 100%;
    font-size: 1.5em;
    font-weight: 400;
    color: white;
    padding-bottom: 20px;
}

a button {
    background-color: hsl(71, 73%, 54%);
    padding: 9px 120px;
    width: 100%;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;
    color: white;
    transition: all 0.5s ease 0s;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

button:hover{
    background-color:  hsl(71, 59%, 43%);
}


aside {
    background-color: hsl(179, 66%, 49%);
    width: 50%;
    padding: 50px;
}

.third_paragraph_after_headline_3 {
    width: 71.25%;
    font-size: 1.5em;
    font-weight: lighter;
    color: white;
    list-style: none;
    opacity: 0.5;
}

.attribution {
    width: 100%;
    font-size: 1.5em;
    font-weight: 400;
    color: white;
    background-color: black;
}

}