@font-face {
    font-family:"sand";
    src: url('./Quicksand.otf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'sand', sans-serif;
}

p {
    padding: 0.5vh;
}

#LouisPic {
    float: left;
    width : 50%;
    display: block;
    border : #ffffff solid 2px;
}

.cont-style {
    background-color: #ffffff;
    border: #000000 solid 1px;
    box-shadow: #000000 5px 5px 10px 0;
    padding : 2vw;
    margin : 1vw 0;
}

header {
    position: fixed;
    top : 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    width : 100vw;
    height: 15vh;
    z-index: 10;
}

main {
    
    margin : auto;
    margin-top : 18vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width : 90vw;
    
}

.left-col {
    width : 30%;
    height : 80vh;
}
.introduction {
    width : 100%;
}

.main-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.game-description {
    width : 100%;
    display : flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    height : 40vh;
}

.game-container {
    width : 65%;
    display : flex;
    justify-content: center;
    align-items: stretch;
    

}

#unity-container.unity-desktop {    
    position: relative;
    top : 0;
    left : 0;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width : 100%;
}

#unity-canva {
    width : 98%;

}