* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    #background: url(assets/img/backgroundImage.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    /*min-height: 100vh;*/
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-left: 4vw;
    padding-right: 5vw;
    height: 100%;
    min-height: 100%;
}

#main {
    flex: 1;
}

.containerCenter{
  display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
align-items: center;
width: 100%;
margin-bottom: 3%;
}

iframe{
 width: 80vw;
 height: calc(80vw/1.77777778);
}

footer {
    display: flex;
    flex-direction: column;
    height: 11vh;
    padding-top: 0vh;
    padding-bottom: 2vh;
}

footer div {
    height: 50%;
}

footer div:last-child {
    padding-top: 1vh;
}

footer img {
    max-width: 100%;
    max-height: 100%;
}

header {
    display: flex;
    height: 11vh;
    padding-top: 3vh;
    padding-bottom: 3vh;
}

header > left-header {
    order: 1;
    flex: 30%;
    justify-content: center;
}

header > center-header {
    flex-basis: auto;
    flex-grow: 1;
    order: 2;
}

header > right-header {
    order: 3;
    flex: 30%;
    justify-content: center;
}

header > right-header div {
    height: 100%;
}

header img {
    max-width: 100%;
    max-height: 100%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

#myCanvas {
    height: 100%;
    width: 100%;
}

.box {
    position: relative;
    height: 95%;
    width: 95%;
    padding: 50px;
    background: #fff;
    border: 2px black solid;
    border-radius: 95% 4% 97% 5%/4% 94% 5% 95%;
    transform: rotate(2deg);
    margin: auto;
}

.box-inner {
    transform: rotate(-2deg);
    height: 100%;
    width: 100%;
}

.overlay-graphics {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

@media only screen and (min-width : 481px) {
    .hide-on-desktop{
        display: none !important;
    }


}

@media only screen and (max-width : 480px) {
    .hide-on-mobile{
        display: none !important;
    }
}
