header {
    width: 100%;
    /* min-height: 60vh; */
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 1.7778;
}
.header_video {
    width: 100%;
}
.header_info {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: center;
    padding: 0px 5%;
    background: linear-gradient(0deg, rgba(0,0,0,1), rgba(0,0,0,0) 100%);
}
.header_info_content {
    box-shadow: 0px 0px 100px rgba(184,211,35,0.2);
    background-color: var(--green);
    border-radius: 20px;
    transform: rotate(-5deg);
    min-height: 300px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.header_info_button {
    min-height: 300px;
    text-shadow: 0px 0px 16px rgba(184,211,35,0.6);
    border-radius: 20px;
    transform: rotate(5deg);
    display: flex;
    float: row nowrap;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 30px;
    line-height: 38px;
    max-width: 500px;
    color: var(--white);
    background-color: var(--black);
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
}