body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-size{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.unselectable{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Montserrat', sans-serif;
}

#side-buttons{
    display: flex;
    position: absolute;
    bottom: 1.5vw; /*values are gived in vw (viewport width) to make it not depend of zoom scale*/
    right: 1.5vw;
    z-index: 999;
    flex-direction: column;
}

#side-buttons > a {
    width: 4vw;
    height: 4vw;
    margin-top: 0.5vw;
    background-color: rgba(72, 72, 72, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#side-buttons > a > img{
    pointer-events: none;
    width: 60%;
    height: 60%;
}

#side-buttons > a#unmute {
    background-color: rgba(255, 0, 0, 0.5);
}

#side-buttons > a#unmute:hover {
    background-color: rgba(180, 0, 0, 0.5);;
}

#side-buttons > a:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Black.ttf') format('truetype');
    font-weight: 900; /* Black */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-BlackItalic.ttf') format('truetype');
    font-weight: 900; /* Black */
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-BoldItalic.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800; /* Extra Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800; /* Extra Bold */
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200; /* Extra Light */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200; /* Extra Light */
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Light.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-LightItalic.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-MediumItalic.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600; /* Semi-Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600; /* Semi-Bold */
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100; /* Thin */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-ThinItalic.ttf') format('truetype');
    font-weight: 100; /* Thin */
    font-style: italic;
}

/* Utilisez la famille de polices Montserrat dans le reste de votre CSS */
body {
    font-family: 'Montserrat', sans-serif;
}

#CreditBar {
    position: absolute;
    left: 50%;
    width: 40%;
    min-width: 400px;
    height: 100%;
    transform: translate(-50%, 0);
    background-color: rgb(72 72 72);
    box-shadow: 0 9px 25px 0px white, 0 -9px 25px 0px white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    color: white;
    padding: 20px;
}

#Credit {
    z-index: 6;
    position: absolute;
    backdrop-filter: blur(5px);
    top: 0;
    width: 100%;
    height: 100vh;
}
#CreditTitle {
    z-index: auto;
    font-size: 40px;
    margin-block-start: 0%;
    margin-block-end: 0%;
    display: block;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

#CreditContent {
    height: 75%;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    scroll-padding-left: 20px;
}

p {
    font-size: large;
    margin-left: 20px;
    margin-right: 20px;
}

p img {
    padding: 30px;
    background-color: white;
    margin-left: 20px;
    margin-right: 20px;
    align-self: center;
    max-width: 100%;
}
