:root {
  font-size: 62.5%;
}

html,
body,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

#body{
    background-color: rgba(245, 245, 245);
    height: 100%;
    color: rgb(255, 255, 255);
}

#bodyWrapper{
    background-color: rgba(245, 245, 245);
    min-height: 100vh;
    
}

#header{
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    grid-template-rows: 2;
    background-color: rgb(245, 245, 245);
    border: 1px solid black;
    caret-color: transparent;
}

#house{
    text-align: center;
    align-content: center;
    font-size: 1.5rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    border-right: 1px solid black;
    caret-color: transparent;
}

#sitename{
    text-align: center;
    font-size: 2rem;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
}

#burger{
    align-content: center;
    text-align: center;
    font-size: 1.5rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    border-left: 1px solid black;
    caret-color: transparent;
}

#headerMenu{
    grid-column: 3;
    position: relative;
    display: none;
    z-index: 10;
    height: 0px;
}


.menu{
    text-align: center;
    border: 1px solid rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-content: center;
    display: inline-block;
    background-color: rgb(245, 245, 245);
    color: rgb(3, 3, 3);
    width: 70px;
    caret-color: transparent;
    font-size: 1rem;
}


#gallery{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 30px;
}

#contact{
    position: absolute;
    top: 30px;
    left: 0px;
    height: 30px;
}

#logo{
    width: 100vw;
}

#titleImage{
    width: 100vw;
}

#paragraphOne{
    color: rgb(0, 0, 0);
    font-size: 1.3rem;
}

.game{
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid gray;
    border-bottom: 2px solid gray;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: rgb(88, 88, 88);
}

.game-picture{
    width: 100vw;
    height: 180px;
    aspect-ratio: 16 / 9; /* Seitenverhältnis z. B. 16:9, 4:3 oder 1/1 für Quadrat */
    object-fit: cover; /* Verhindert Verzerrung, schneidet ggf. Ränder ab */
    
}

.gameLinkPage{
    position: relative;
    top: -10px;
  color:rgba(3, 3, 3);
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
}

.gameLinkPage:visited{
  color:rgba(3, 3, 3);
}

#footer{
    margin-top: 40px;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    border-top: 2px solid gray;
    border-bottom: 2px solid gray;
    column-gap: 2px 2px;
    background-color: rgba(3, 3, 3);
    bottom: 0;
}

#footerGames{
    margin-top: 40px;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    border-top: 2px solid gray;
    border-bottom: 2px solid gray;
    column-gap: 2px 2px;
    background-color: rgba(3, 3, 3);
    bottom: 0;
    position: absolute;
}

.socialLogo{
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    
    color: rgb(245, 245, 245);
    text-align: center;
    font-size: 30px;
    background-color: black;
    border-left: 1px solid gray;
    caret-color: transparent;
}

#youtubeButton{
    border-right: 1px solid gray;
}

#itch.io a{
    font-size: 40px;
}

#itchIoLogo{
    font-size: 80px;
    color: rgb(3, 3, 3);
    
}

#itch.ioButton{
    
    font-size: 110px;
    border: 1px solid rgba(245, 245, 245);
    caret-color: transparent;
    text-align: center;
    
}

