@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

html, body{
    margin: 0;
    padding: 0;
}

body{
    background-color: #113331;
    font-family: "Open Sans", sans-serif;
}

gamelist{
    /* float:left; */
}

h1{
    color: #20c9bf;
}

h2{
    color: #20c9bf;
}

p{
    color:antiquewhite;
}

.home-game-thumbnail{
    width: 300px;
}

.home-game-title{
    text-align: center;
    color: aqua;
}

.home-game{
    float:left;
    margin: 15px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    scale: 1;
}

.home-game:hover{
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    scale: 1.1;
}

header{
    background-color: #1b4d49;
    width: 100%;
    height: 100px;
}

.header-element{
    float:left
}

game-content{
    margin-left: 6rem;
    float: left;
    width: 70rem;
    background-color: #1b4d49;
}

game-description{
    padding: 0rem 1rem 0rem 1rem;
    float: left;
}

#unity-canvas{
    background-color: black;
    width: 70rem;
    height: 40rem;
}

.gamelist-title{
    color: white;
}

gamelist-content{
    display: flex;
    overflow: auto;
}

gamelist-content::-webkit-scrollbar{
    display: none;
}

recomendations{
    float: left;
    width: 21rem;
    height: 64rem;
    margin: 0rem 5rem 0rem 5rem;
}

.recomendations-game-thumbnail{
    width: 300px;
}

.recomendations-game-title{
    text-align: center;
    color: aqua;
}

.recomendations-game{
    float:left;
    margin: 15px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    scale: 1;
}

.recomendations-game:hover{
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    scale: 1.1;
}