body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Source Code Pro', monospace;
    background: hsla(212, 100%, 46%, 1);
    background: linear-gradient(225deg, hsla(212, 100%, 46%, 1) 0%, hsla(251, 100%, 15%, 1) 100%);

    background: -moz-linear-gradient(225deg, hsla(212, 100%, 46%, 1) 0%, hsla(251, 100%, 15%, 1) 100%);

    background: -webkit-linear-gradient(225deg, hsla(212, 100%, 46%, 1) 0%, hsla(251, 100%, 15%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#006DEA", endColorstr="#0E004E", GradientType=1 );

}

/* h1,
h2 {
    font-family: 'Source Code Pro', monospace;
} */

ul,
ol {
    text-align: left;
}

a {
    color: white;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 60px 0;
    color: white;
    cursor: url('images/cursor.png');
}

.sr-only {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.square-ratio,
.sixteen-ratio {
    position: relative;
    overflow: hidden;
    min-width: 80%;
}

.sixteen-ratio {
    max-height: 315px;
    margin-bottom: 30px;
}

.square-ratio::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
}

.sixteen-ratio::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 177.78%;
}

.ratio-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ratio-content img,
.ratio-content iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.john-fran a {
    display: block;
    margin: 60px 0;
}

.noakes-alexis figure {
    text-align: center;
}

.noakes-alexis figure h1 {
    margin-bottom: 20px;
}

.noakes-alexis figure span {
    display: block;
    font-size: 10px;
    margin-bottom: 20px;
}

.caffyn-pope section {
    text-align: center;
    max-width: 320px;
    margin: 20px 0;
}
.matt-bri section,
.sam-annabelle section {
    padding: 0 20px;
    max-width: 560px;
}

.button.start {
    display: inline-block;
    position: relative;
    padding: 16px 42px;
    margin: 20px 0;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    color: white;
    text-decoration: none;
    transition: color 200ms ease-in;
}

.button.start:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    transition: height 200ms ease-in;
    z-index: -1;
}

.button.start:hover {
    color: darkblue;
}
.button.start:hover:before {
    height: 100%;;
}

.matt-bri section:nth-child(2) a {
    margin: 20px 0;
}
.matt-bri section .insult-url {
    margin: 40px 0;

}


@media (min-width: 768px) { 
    .square-ratio,
    .sixteen-ratio {
        min-width: 560px;
    }
   .caffyn-pope section {
        max-width: 700px;
    }
 }