@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #ebebde;
}

body {
    background:  #34414d;
    background-image: url('./img/background_2.png');
    background-repeat: repeat;
    /* background-size: 4%; */
     background-size: 64px 64px; 
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 10%;
    background: #102835;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: solid;
    border-width: 0;
    border-bottom-width: 1px;
    border-color: black;
    box-shadow: 0 2px 4px 0 #00000088;
}

.logo{
    font-size: 28px;
    font-weight: 500;
}

.links-box{
    width: 150px;
    display: flex;
    justify-content: right;
    gap: 10px;    
}

.links-box a{
    font-size: 32px;
    text-decoration: none;
    transition: .3s;
}

.links-box a:hover{
    font-size: 32px;
    text-decoration: none;
    color: #33cc99;
}



.home{
    display: flex;
    flex-direction: column;
    /* height: 100vh;  */
    width: 100%;
    padding: 60px 10%;
    align-items: center;
    justify-content: center;
}

.home-content{
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    /* width: 1000px; */
    align-items: center;
}

.main-logo{
    padding: 10px;
}

h1{
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 36px;
    font-weight: 500;
}

h2{
    padding-bottom: 10px;
}

.game{
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* flex-direction: column; */
    flex-wrap: wrap;
    background-color: #10283533;
    border-radius: 10px;
    /* box-shadow: 2px 2px 4px 0 #00000088; */
}

.game-pictures{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    margin-top: 10px;
}

.game-description{
    padding-left: 20px;    
    padding: 10px;
    margin-left: 20px;


  flex: 50%;
}

.game-logo{
    margin-bottom: 10px;
}

.home-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    height: 40px;
    width: 100%;
    background: #102835;
    border: solid;
    border-width: 0;
    border-top-width: 1px;
    border-color: black;
    box-shadow: 0 -2px 4px 0 #00000088;
}

.home-footer a{
    text-decoration: none;
    transition: .3s;
}

.home-footer a:hover{
    color: #33cc99;
}

.game-description a{
    transition: .3s;
}

.game-description a:hover{
    color: #33cc99;
}


.splitter{
    width: 100%;
    height: 3px;
    background-color: #666666;
    margin: 10px 0;
}

