body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Hide scrollbars */

}

iframe{
    position: absolute;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    z-index: 0;

}

.front{
    z-index: 1;
}

button
{
    z-index: 100;
}

#augmentedButton
{
    z-index: 100;
    position: fixed;
    right: 0px; bottom: 0px;
    max-width: 5em;
    max-height: 5em;
    margin: 1em;
    padding: 5px;

    transform: translateY(-50%);
}
#augmentedButton svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
#augmentedButton svg:hover{
    opacity: 1;
}

.buttonNext{
    z-index: 100;
    position: absolute;
    width: 10vw;
    height: 10vw;
    max-width: 5em;
    max-height: 5em;
    margin: 1em;
}
.buttonPrev{
    z-index: 100;
    position: absolute;
    width: 10vw;
    height: 10vw;
    max-width: 5em;
    max-height: 5em;
    margin: 1em;
}
p {
    font-size: 1em;
    text-align: center;
    color: rgba(255, 255, 255, .5);
}
@media only screen and (max-width: 750px) {

    p {
        font-size: .8em;
    }
}

@media only screen and (max-width: 575px) {

    p {
        font-size: .6em;
    }
}

@media only screen and (max-width: 359px) {

    p {
        font-size: .5em;
    }
}

svg
{
    fill: white;
    fill-opacity: 50%;
}
svg:hover{
    fill-opacity: 80%;
}

.buttonPrev
{
    top: 50%;
    transform: translateY(-50%);
}

.buttonNext
{
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.hide
{
    display: none;
}
#Outside
{
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(205,32,40);
    background: linear-gradient(180deg, rgba(205,32,40,1) 0%, rgba(27,38,81,1) 0%, rgba(27,38,81,0.9458158263305322) 100%);
}
#OutsideFlex
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#Outside h2 {
    color: whitesmoke;
    font-size: 4em;
}

#Outside h3 {
    color: whitesmoke;
    font-size: 3em;
}

@media only screen and (max-width: 1000px) {
    #Outside h2 {
        color: whitesmoke;
        font-size: 2em;
    }

    #Outside h3 {
        color: whitesmoke;
        font-size: 1em;
    }
}
@media only screen and (max-width: 475px) {
    #Outside h2 {
        color: whitesmoke;
        font-size: 1em;
    }

    #Outside h3 {
        color: whitesmoke;
        font-size: .5em;
    }
}