body {
    background-image: url('Grid.png');
    background-repeat: repeat;
    text-align: center;
    overflow-x: hidden;
    background-color: #efcaa3;
}

.top-bar{
    width: 100%;
    height: 60px;
    background-color: rgb(223, 171, 93);
    display: flex;     
    align-items: center;   
    gap: 10px;         
    padding: 0 20px;       
}

.DownloadButton {
    border: none;
    border-radius: 5px;
    background-color: rgb(255, 198, 132);
    color: white;
    font-size: 35px;
    box-shadow: 0px 5px 10px black;
    margin-top: 50px;
    margin-bottom: 100px;
    transition: 0.2s;
}

.top-BTN:hover{
    background-color: #aa9c8c;
}

.DownloadButton:hover{
    background-color: rgb(255, 222, 183);
    transform: scale(1.10);
}

.bar{
    width: 100%;
    height: 5px;
    background-color: rgb(240, 201, 144);
    display: flex;     
    align-items: center;         
}

.top-BTN{
    border: none;
    border-radius: 5px;
    background-color: #eebd85;
    color: rgb(253, 236, 198);
    font-weight: bold;
    font-size: 35px;
    transition: 0.2s;
}

.top-BTN:active{
    filter: brightness(100%);
    transform: scale(1.10);
}

.Description{
    max-width: 600px;
    text-align: center;  
    margin: 0 auto;         
    font-size: 30px;
    color: #fcebd9;
    line-height: 1.3;        
    word-break: break-word; 
}

.GameImage{
    box-shadow: 0px 10px 20px black;
    transition: 0.2s;
    margin-top: 100px;
}

.GameImage:hover{
    transform: scale(1.05);
    filter: saturate(100%) brightness(150%);
}


.FullDescription{
    max-width: 1200px;
    text-align: center;  
    margin: 0 auto;         
    font-size: 30px;
    color: #f8e0c5;
    line-height: 1.3;        
    word-break: break-word; 
}

.GameDescription{
    max-width: 1200px;
    text-align: center;  
    margin: 0 auto;         
    font-size: 30px;
    color: #f8e0c5;
    line-height: 1.3;        
    word-break: break-word; 
    margin-top: 50px;
}

.title{
    color: #f5e5d3;
    margin-top: 50px;
    font-size: 50px;
    text-decoration: underline;
    font-weight: bold;
    text-decoration-color: #c4a789;
    transition: 0.2s;
}

.title:hover{
    text-decoration-color: #a1886d;
    font-size: 55px;
}

