.pageOne{
    width: 100%;
    min-height: 80vh;
}
marquee{
    color: black;
    border-top: 6px solid black;
    border-bottom: 6px solid black;
    margin-top: 10px;
    font-size: 2rem;
}
.pageOneHead{
    padding: 5rem;
    width: 100%;
    display: flex;
}
.pageOneHeadImg{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pageOneHeadImg img{
    width: 400px;
    height: 400px;
}
.pageOneHeadText{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
    background-color: #ffebe2;
    padding: 2rem;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.pageOneHead a{
    background-color: red;
    outline: none;
    border: solid black 3px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}
.pageOneHeadVid>video{
    width: 400px;
    height: 400px;
}
.pageOneHeadVid{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.graphics-row{
    display: flex;
    gap: 20px;
}
.pageOneHeadText a{
    cursor: pointer;
    background-color: #ff7628;
}

.pageOneImg{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pageOneImg img{
    width: 350px;
    height: 350px;
    animation: pageOneImg alternate infinite 1s;
    -webkit-animation: pageOneImg alternate infinite 1s;
}

@media (max-width: 800px){
    .pageOneHead{
        padding: 1rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .pageOneHeadText{
        width: 100%;
    }
    .graphics-row{
        flex-direction: column;
    }
}

/* PAGE 2 */
.pageTwoSlider{
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    background-color: #212121;
    padding: 2rem;
}
.pageTwoCards{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
    margin-top: 5rem;
}
.pageTwoCard{
    cursor: pointer;
    border: solid white 3px;
    height: 300px;
    width: 25%;
    padding: 1rem;
    box-shadow: 5px 5px 5px black;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -ms-transition: 0.8s;
    -o-transition: 0.8s;
    background-color: #ff7628;
}
.pageTwoCard img{
    width: 60%;
    height: 60%;
}
.pageTwoCard:hover{
    background-color: red;
    color: white;
    box-shadow: none;
}
@media (max-width: 800px){
    .pageTwoCards{
        flex-direction: column;
    }
    .pageTwoCard{
        width: 100%;
    }
}





