* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
span,
h1,
h2,
h3,
h4,
p {
    font-family: 'Open Sans', sans-serif;
  	color:#3A3A3A;
}
.fallback {
    display: none;
}
header {
    padding: 9px 0;
    background-color: #95CC8A;
    display: flex;
    justify-content: center;
}
header span {
    color: white;
    font-size: 12.5px;
    font-weight: 600;
}
main {
    margin: auto;
    width: 1100px;
}
section {
    margin: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.video h2 {
    margin-right: auto;
    font-weight: bold;
    font-size: 28px;
}
section.video h2 span.highlighted {
    color: #95CC8A;
}
section.video iframe.youtube-video {
    margin: 90px 0;
}
section.details {
    padding: 10px;
}
section.details h2 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 35px;
}
section.details p.description {
    margin-bottom: 115px;
    padding: 0 120px;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}
section.details figure {
    display: flex;
    justify-content: center;
    align-items: center;
}
section.details figure.inverted {
    flex-direction: row-reverse;
}
section.details figure:not(:last-of-type) {
    margin-bottom: 110px;
}
section.details figure .img-container {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
section.details figure .img-container img.url {
    margin: 20px;
    width: 100%;
}
section.details figure .img-container img.statistics {
    margin: -20px;
    width: 75%;
}
section.details figure .img-container img.twitter {
    margin: 20px;
    width: 100%
}
section.details figure figcaption {
    width: 50%;
    display: flex;
    flex-direction: column;
}
section.details figure:not(.inverted) figcaption {
    align-items: flex-end;
}
section.details figure.inverted figcaption {
    align-items: flex-start;
}
section.details figure figcaption h3 {
    font-size: 38px;
    margin-bottom: 20px;
}
section.details figure figcaption p {
    width: 400px;
    font-size: 20px;
    font-weight: 500;
}
section.details figure:not(.inverted) figcaption p {
    text-align: end;
}
section.details figure.inverted figcaption p {
    text-align: start;
}
footer {
    padding: 22px 0;
    background-color: #95CC8A;
    display: flex;
    justify-content: center;
}
footer span {
    color: white;
    font-size: 21px;
    font-weight: 600;
}

@media screen and (max-width: 1100px) {
    .fallback {
        padding: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #95CC8A;
    }
    .fallback span {
        font-size: 28px;
        text-align: center;
        font-weight: 600;
        color: white;
    }
    main {
        display: none;
    }
}
