/* Game website css */

*{
    margin: 0;
    padding: 0;
    font-family: hwt-gothic-round,sans-serif;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color: rgb(250,250,250);
    letter-spacing: 1px;
}
 
#landingPage{
    width: auto;
    height: 100vh;
    background-image: url(./GamePage/images/BuildingsBg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section{
    width: 100%;
    height: 100vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.material{
    margin-bottom: 20px;
    padding: 12px 18px;
    border: 3px solid #3954a5;
    border-radius: 12px;
    background-color: #3954a542;
    transition: 0.3s;
}
.material:hover{
    background-color: #3954a5;
}

a:link, a:visited{
    color: rgb(250,250,250);
    text-decoration: none;
    font-size: 26px;
}
#logo1{
    width: 80%;
    height: auto;
    margin-bottom:80px;
}
#logo2{
    display: none;
}
#start{
    margin: 0 auto;
    margin-bottom: 50px;
}
#playButton{
    width: 35%;
    height: auto;
    transition: 0.3s;
    animation: playButton 0.7s linear 0.3s infinite alternate;
}
#playButton:hover{
    filter: opacity(70%);
}
@keyframes playButton{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.2);
    }
}
footer{
    position: absolute;
    bottom: 0;
    padding-bottom: 25px;

}




/* media queries */

@media screen and (max-width: 600px) {
    #logo1 {
      display: none;
    }
    #logo2{
        display: block;
        margin: auto;
        width: 80%;
        height: auto;
        margin-bottom:80px;
    }
  }

