
iframe {
    background-color: #333333;
}
/* SECTION 1 */

.intro {
    width: 100vw;
    height: 100vh;
    background-image: url(../images/background_speed.jpg);
    background-repeat: repeat;
    background-size: cover;
}

.intro-content {
    width: 90vw;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.back {
    align-self: start;
}

.video {
    background-color: rgba(255,255,255,0);
    width: 960px;
    height: 600px;
}

button {
    color: white;
}

button:hover {
	background-color: #b9aa4f;
    color: #eeeeee;
	border-top: 2px solid white;
	border-left: 2px solid white;
}

/* YOU & ME */

.you {
    width: 100vw;
    min-height: 100vh;
    background-color: #E5E1E5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.you-content {
    max-width: 800px;
    padding: 8%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.you-content > p {
    max-width: 300px;
}

.you-image {
    min-width: 200px;
    max-width: 280px;
}

.me-image {
    width: 100%;
    min-width: 200px;
    max-width: 750px;
}

.me {
    width: 100vw;
    min-height: 100vh;
    background-color: #333333;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.what-is-it {
    background-color: #5B86C4;
    padding: 5%;
    min-width: 300px;
    max-width: 400px;
    margin: 3%;
}


.what-is-it > h3 {
    font-family: Inconsolata, Helvetica, sans-serif;
    color: #dddddd;
}

.what-is-it > p {
    font-family: Inconsolata, Helvetica, sans-serif;
    color: #dddddd;
    font-size: 1.1em;
}

/* DISKS */

.disks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 700px;
}

.real-vlp {
    width: 20vw;
    min-width: 250px;
    animation: spin 15s linear infinite;
    margin: 3%;
}

@keyframes spin {
    0% {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}

/* BACKGROUNDS */

.ugh {
    background-image: url(../images/background_ugh.jpg);
    background-repeat: repeat;
    background-size: cover;
}

.breathe {
    background-image: url(../images/background_breathe.jpg);
    background-repeat: repeat;
    background-size: cover;
}

.bike {
    background-image: url(../images/background_biketrip.jpg);
    background-repeat: repeat;
    background-size: cover;
}

.fam {
    background-image: url(../images/background_fam.jpg);
    background-repeat: repeat;
    background-size: cover;
}

/* GALLERY */

.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-mobile {
    display: none;
}

.folks {
    width: 90%;
}