
* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    margin: 0 0 0 0;
    padding : 1px;
    background-color: rgb(36, 36, 36);
    color: whitesmoke;
    overflow: hidden;
}

.side-panel {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 5px;
    position: fixed;
    width: 200px;
    height: 100vh;
    background-color: #010203;
    overflow: hidden;
    font-size: 20px;
}

.main-content {
    height: 100vh;
    margin-left: 200px;
    overflow: auto;
    text-align: center;
    width: calc(100vw - 200px);
}

.logo{
    padding: 0;
    width: 85%;
    position : relative;
}

h1 {
    margin: 10px;
    font-size : 44px;
}

.intro {
    background-color: rgba(112, 110, 110, 0.646);
    height: auto;
    border-radius: 5px;
    text-align: center;
    font-size : 16px;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.jeux{
    display: flex;
    flex-direction: row;
    gap : 15px;
    float: left;
    font-weight: bold;
    font-size: 24px;
    margin-left : 10%;
    margin-top : 10%;
}

.miniature{
    width: 200px;
    height:200px;
}

a {
    color: whitesmoke;
}
a:link {
    color: whitesmoke;
    background-color: transparent;
    text-decoration: none;
}
a:visited {
    color: whitesmoke;
    background-color: transparent;
    text-decoration: none;
}
a:active {
    color: whitesmoke;
    background-color: transparent;
}