body {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: #BAE3F5; */
}

.cont {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holder {
    width: fit-content;
    height: fit-content;
}

.title {
    font-weight: 500;
    font-size: 3vw;
}

.content {
    width: 80vh;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content > img {
    width: 80vh;
    height: 80vh;
}

.content h2 {
    font-size: 3vw;
}

.content p {
    font-size: 2vw;
}

.content video {
    max-width: 80vh;
    height: auto;
}

#mainCanvas {
    position: absolute;
    width: 80vh;
    height: 80vh;
}

#secondCanvas {
    position: absolute;
    width: 80vh;
    height: 80vh;
}

#fadeOutContainer {
    position: absolute;
    background-color: white;
    transition: opacity 1s;
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#videoPlayer {
    width: 100vw;
    height: 90vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition-duration: 0.5s;
    opacity: 0;
}

#videoPlayer video {
    width: 100vw;
    height: 90vh;
    margin: 0;
}

#textContainer {
    width: 100vw;
    height: 90vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition-duration: 0.5s;
    opacity: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#controlsContainer {
    position: absolute;
    bottom: 0;
    height: 10vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.controlBTN {
    width: 14%;
    height: 100%;
    background-color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.controlBTN:hover {
    opacity: 0.7;
}