body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Open Sans", Arial, sans-serif;
}

header {
    margin: 10px 0 27px;
    width: 100%;
    text-align: center;
}

h1, h2, h3 {
    font-family: Caveat, handwriting;
    color: rgb(51, 51, 51);
    font-weight: 300;
    margin: 0;
}

h1 {
    font-size: 73px;
    padding-bottom: 10px;
    letter-spacing: 2px;
}

h2 {
    font-size: 80px;
}

h3 {
    font-size: 50px;
    text-align: center;
}

p {
    font-size: 18px;
    font-weight: 320;
    margin: 0;
}

p.information {
    letter-spacing: 2px;
    margin-bottom: 63px;
}

a {
    text-decoration: none;
    font-size: 20px;;
    padding: 10px 25px;
    border: 2px solid rgba(0, 0, 0, 0.69);
    border-radius: 3px;
    color: rgba(0, 0, 0, 0.69);
    justify-self: center;
    margin-top: auto;
    transition: 300ms ease 0ms;
}

a:hover {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0);
}

span.spacer {
    display: inline-block;
    margin: 0 8px;
    font-weight: 500;
}

section.videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 80px 0 54px;
    width: 100%;
}

section.videos h2 {
    width: 80%;
    text-align: center;
}

section.videos .video-container {
    aspect-ratio: 16 / 9;
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}

section.videos .video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

section.links-background {
    background: rgba(0, 0, 0, 0.07);
    width: 100%;
    padding: 75px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.links {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1080px;
    width: 80%;
}

div.links p {
    line-height: 2;
}

section.thank-you {
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    justify-content: center;
    align-items: center;
    margin: 54px 0;
    width: 80%;
}

section.thank-you h3 {
    margin: 20px 0;
}

section.thank-you p {
    text-align: center;
    font-size: 18px;
    color: #333;
    padding-bottom: 37px;
}

section.thank-you img {
    padding: 27px 0;
}

.links p {
    max-width: 300px;
    font-size: 18px;
    color: rgb(102, 102, 102);
    margin: 0;
}

div.links div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

blockquote {
    border-left: 5px solid #2ea3f2;
    padding-left: 20px;
    margin: 0;
}

img.daniel-top {
    width: 345px;
    box-shadow: 0px 2px 18px 1px rgba(0, 0, 0, 0.3);;
    border-radius: 5px;
}

img.daniel-senior {
    width: 80%;
}

img.divider {
    width: 200px;
    padding: 0 20px;
}

footer {
    width: 100%;
    height: 125px;;
    background-color: rgb(34, 34, 34);
}

@media screen and (max-width:980px) {
    div.links {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }
}