/*BANNER*/

#catch {
    width: max-content;
    text-align: center;

    position: absolute;

    background-color: #ff6b0f;

    transform-origin: top left;
    transform: translateX(0.5em) translateY(-0.5em) rotate(-25deg);

    font-size: 1em;
    font-weight: bold;
    margin: 0;
    padding: 10px 20px;
    border-radius: 100px;

    box-shadow: -3px -1px 1px 1px #D76A2860;
}

.banner {
    width: 100vw;
    height: 80vh;
    background-image: linear-gradient(#ff5e008c, #9b3900dc), url("/assets/img/LOOP.gif");
    background-size: cover;
    background-position: center;
}

.banner>div:nth-child(1) {
    max-width: 30vw;
}

.banner * {
    color: white;
    text-align: center;
}

.banner h1, .banner h2, .banner p {
    text-shadow: black 1px 0 10px;
}

.banner h1 {
    font-size: 3em;
    margin-bottom: 50px;
}

.banner p {
    font-size: 1.4em;
    margin-bottom: 20px;
}

.banner img {
    height: 50vh;
}

.transitionbox {
    position: relative;
    justify-content: space-around;
    top: -40px;
    height: 80px;
    width: 60vw;

    margin-bottom: calc(20vh - 80px);
    border-radius: 15px;

    background-color: white;
    box-shadow: rgb(230, 230, 230) 0 0 1px 2px;
}

.transitionbox img {
    width: 40px;
    height: 40px;
    margin: 5px;
    padding: 0;
}

.transitionbox p {
    text-align: center;
}


@media only screen and (max-width: 1300px) {
    /*Banner*/

    .banner>div:nth-child(1) {
        max-width: 70vw;
    }
    
    #catch {
        font-size: 3em;
        padding: 20px 40px;
        border-radius: 200px;
        transform: translateX(-1.4em) translateY(-0.6em) rotate(-25deg);

        box-shadow: -6px -2px 2px 2px #D76A2860;
    }

    .banner h1 {
        font-size: 7em;
        margin-bottom: 30px;
    }
    
    .banner p {
        font-size: 2.4em;
        margin-bottom: 50px;
    }
    
    .banner img {
        height: 0;
        width: 0;
        visibility: hidden;
    }

    .transitionbox {
        width: 90vw;
    }
}