.home_row {
    display: flex;
    align-content: left;
}

.home_col {
    flex: 50%;
    padding: 20px;
}

.main {
    color: #ffffff;
    font-family: Montserrat;
    font-size: 10vh;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0 5vw;
    animation-name: fade;
    animation-duration: 3s;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.learn a, .launch a {
    font-family: Montserrat;
    text-decoration: none;
    font-size: 2.75vh;
    padding: 8px 16px;
    margin: 0 0 0 5vw;
}

.learn a {
    color: #f9b7ff;    
    border: 2px solid #f9b7ff;
}

.learn a:hover {
    color: #ffffff;
    background: #e9acee;
}

.launch a {
    color: #ffebb7;
    border: 2px solid #ffebb7;
}

.launch a:hover {
    color: #ffffff;
    background: #e7cc88;
}

.launch a,
.learn a {
    animation: out;
    animation-duration: 1.5s;
}

@keyframes out {
    from {
        opacity: 0;
        margin-left: 12vw;
    }

    to {
        margin-left: 5vw
    }

    30% {
        opacity: 0;
        margin-left: 12vw;
    }
}

.container {
    width: 35vw;
    display: inline-flexbox;
    justify-content: center;
    align-items: center;
}

.container video {
    max-width: 100%;
    max-height: 100%;
}

.slide {
    animation: slide;
    animation-duration: 1s;
}

@keyframes slide {
    from {
        height: 18vh;
    }

    to {
        height: 30vh;
    }
}

/* responsive for mobile */
@media screen and (max-width: 760px) {
    .home_row {
        flex-direction: column;
        gap: 0px;
    }

    .main {
        font-size: 9vw !important;
    }

    .slide {
        height: 0px !important;
    }

    .container {
        width: 75vw !important;
        align-items: flex-start;
    }
}