@font-face {
    font-family: BankGothic;
    src: url('../../fonts/bankgothic/BankGothic\ Bold.ttf');
}
.content-box{
    position: relative;
    /* background-color: aqua; */
    /* height: 200px; */
    width: 100%;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.corner-img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
}

.corner-right{
    transform: scaleX(-1);
    right: 0;
}

#title-box{
    position: absolute;
    bottom: 60px;
    width: 100%;
    text-align: center;
}
.title{
    /* position: absolute; */
    /* bottom: 200px; */
    color: #70338B;
    font-family: bankGothic;
    display: block;
    margin-bottom: 80px;
    max-width: calc(100% - 450px);
    margin-left: auto;
    margin-right: auto;
}

.main-page-link{
    border: 3px solid #70338B;
    padding: 5px 30px;
    border-radius: 5px;
    color: #70338B;
    transition: all .3s ease-out;
    font-size: 20px;
    background-color: white;
}

.main-page-link:hover, .main-page-link:focus{
    color: white;
    background-color: #70338B;
    transition: all 0.2s ease-in;
}


#logo{
    position: absolute;
    bottom: -25px;
    width: 200px;
    left: 50%;
    margin-left: -100px;
    z-index: 50;
}



.trapezoid {
	border-top: 200px solid white;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	height: 0;
	width: 60%;
    text-align: center;
    margin: auto;
    margin-top: 0;
    position: relative;
    
}

.mini-trapezoid {
	border-top: 25px solid white;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	height: 0;
	width: 200px;
    text-align: center;
    margin: auto;
}

#links-box{
    /* background-color: antiquewhite; */
    width: 100%;
    position: relative;
    top: -70px;
    display: flex;
    align-content: center;
    justify-content: center;
    /* gap: 50px; */
    font-size: 20px;
    flex-wrap: wrap;
    /* right: 30px; */
    margin: auto;
}

.links{
    margin: 5px 8%;
    width: 80px;
}

a{
    color: unset;
    text-decoration: none;
}

.video-bg{
    position: relative;
    width: 100%;
    margin-top: -5px;
    z-index: -1;
}

.video-bg video{
    width: 100%;
    height: 450px;
    object-fit: cover;
}

#video-responsive-box{
    
    display: none;
    grid-template-columns: auto;
    grid-template-rows: auto;
    align-items: center;
    margin-top: 100px;
}
#video-responsive{
    /* display: none; */
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

#responsive-title{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    z-index: 2;
    font-size: 46px;
    color: #70338B;
    font-family: bankGothic;
}

@media screen and (max-width:650px) {
    #video{
        display: none;
    }

    #video-responsive{
        display: block;
    }

    #video-responsive-box{
        display: grid;
    }

    .corner-img{
        width: 50%;
    }

    #title-box{
        bottom: 50vw;
        z-index: 20;
    }

    .title{
        display: none;
    }

    #responsive-title{
        display: block;
    }
    /* .trapezoid {
        border-top: 120px solid white;
        border-left: none;
        border-right: none;
        height: 0;
        width: 100%;
        text-align: center;
        margin: auto;
        margin-top: 0;
        position: relative;
        
    }

    .video-bg{
        margin-top: -25px;
    } */
}

@media screen and (max-width:400px) {
    /* #links-box{
        width: 200px;
        top: 50px;

    }

    .trapezoid{
        border-top: none;
        height: 220px;
    } */
}