
/* Pink: #fe89d6 */
/* Black: #black */
/* White: #fefefe */
/* Yellow: #fef607 */

.shadow {
    -moz-box-shadow: 0 0 5px 0 black;
    -webkit-box-shadow: 0 0 5px 0 black;
    box-shadow: 0 0 5px 0 black;
}

body, h1, h2, h3, p{
    margin: 0;
    padding: 0;
}

body {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 100;
    font-style: normal;
    color: #fefefe;
    background-color:hsla(320,98%,76%,1);
    background-image:
    radial-gradient(at 29% 8%, hsla(321,100%,75%,1) 0px, transparent 50%),
    radial-gradient(at 26% 9%, hsla(308,100%,75%,1) 0px, transparent 50%),
    radial-gradient(at 84% 30%, hsla(328,100%,75%,1) 0px, transparent 50%);
}

h1 {
    font-size: 8em;
    line-height: 0.8em;
    margin-bottom: 0.1em;
    word-spacing: 100vw;
    text-align: right;
}

h2 {
    font-size: 28px;
    line-height: 28px;
    font-weight: 1;
    margin-bottom: 1.4em;
    color: #fef607;
    text-align: right;
}

h3 {
    font-size: 28px;
    font-weight: 1;
    line-height: 28px;
    text-align: right;
}

p {
    font-family: sans-serif;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 1;
    font-size: 1.5em;
}

.bio {
    margin: 0 auto;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 3em;
    margin-top: 3em;
    width: 90%;
}

.main {
    width: 100%;
    margin: 0 auto;
}

.main .text {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 10%;
    margin-bottom: 5%;
    width: 90%;
}

.main .all-videos {
    margin-right: 5%;
    margin-left: 5%;
    width: 90%;
}

.main .top-videos {
    margin: 0 auto;
}

.main .top-videos .project {
    width: 100%;
    margin-bottom: 1em;
}

.main .bottom-video {
    margin: 0 auto;
}

.main .bottom-video .project {
    width: 100%;
    margin-bottom: 1em;
}

.project {
    background-color: #fe89d6;
    margin-top: 5px;
    margin-bottom: 5px;
}

.project .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 10px;
    background-color: transparent;
    border: 0;
    background-color: black;
    margin-bottom: 2em;
}

.all-videos .video-container:hover {
    transform: scale(1.01);
    transition: 0.2s;
  }

.project .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
}

.pilot {
    margin: 0 auto;
    padding: 0;
    margin-top: 50px;
    width: 90%;
    max-width: 80rem;
    height: 100vh;
}

.pilot .project {
    margin: 0;
}

.pilot h3 {
    text-align: left;
    font-weight: 10;
}

.surprise-button {
    margin: 0 auto;
    margin-top: 4em;
    margin-bottom: 4em;
    color: white;
    width: 100px;
}

.surprise-button img {
    width: 100px;
    height: 100px;
}

.surprise-button img:hover {
    animation: shake 1s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% { transform: scale(1.1); }
    10% { transform: translate(-1px, -2px) rotate(-1deg) scale(1.1); }
    20% { transform: scale(1.1); }
    30% { transform: translate(3px, 2px) rotate(0deg) scale(1.1); }
    40% { transform: scale(1.1); }
    50% { transform: translate(-1px, 2px) rotate(-1deg) scale(1.1); }
    60% { transform: scale(1.1); }
    70% { transform: translate(3px, 1px) rotate(-1deg) scale(1.1); }
    80% { transform: scale(1.1); }
    90% { transform: translate(1px, 2px) rotate(0deg) scale(1.1); }
    100% { transform: scale(1.1); }
}

@media screen and (min-width: 800px) {

    h1 {
        font-size: 10em;
    }

    .main .top-videos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .main .top-videos .project {
        display: inline-block;
        width: 50%;
        width: calc(50% - 10px);
    }

    .project .video-container {
        margin-bottom: 0;
    }

    .pilot .project .video-container {
        margin-bottom: 2em;
    }

}

@media screen and (min-width: 1200px) {

    h2 {
        margin-bottom: 0;
    }

    .bio {
        margin: 0 auto;
        margin-bottom: 3em;
        max-width: 80rem;
    }

    .main {
        display: flex;
        flex-direction: column;
        height: 100vh;
        position: relative;
        max-width: 80rem;
    }

    .main .text {
        margin-top: 0;
        margin-right: 10px;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: calc(30% - 10px);
        flex: 1;
        left: -70%;
        -webkit-animation: left-to-right 1s ease-out forwards;
        animation: left-to-right 1s ease-out forwards;
    }

    @-webkit-keyframes left-to-right{
        from{left:-70%}
        to{left:0}
    }

    @keyframes left-to-right{
        from{left:-70%}
        to{left:0}
    }

    .main .all-videos {
        margin-left: 10px;
        position: absolute;
        top: 50%;
        left: calc(35% + 10px);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: calc(60% - 10px);
        flex: 2;
        left: 120%;
        -webkit-animation: right-to-left 1s ease-out forwards;
        animation: right-to-left 1s ease-out forwards;
    }

    @-webkit-keyframes right-to-left{
        from{left: 120%}
        to{left:35.65%}
    }

    @keyframes right-to-left{
        from{left:120%}
        to{left:35.65%}
    }

    .main .top-videos {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main .top-videos .project {
        display: inline-block;
        width: calc(45% - 10px);
    }

    .main .bottom-video {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main .bottom-video .project {
        display: inline-block;
        width: 90%;
    }

}
