#title{
    display:flex;
    justify-content: center;
}
#game {
    width: 1200px;
    background-color: #6be0e0;
    margin: 1rem auto;
    padding: 1rem;
}

.game-container {
    position:relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.play {
    width: 350px;
    height: 700px;
}

.info {
    margin-top: 100px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}



.buttons {
    position: absolute;
    bottom: 40px;
    left: 100px;
    gap: 1rem; 
}

button{
    background-color: #444;        
    color: white;                  
    border: none;                  
    border-radius: 12px;           
    padding: 0.6rem 1.2rem;       
    font-size: 1rem;                           
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #333;      
    transform: translateY(-2px);  
}

button:active {
    background-color: #222;       
    transform: translateY(0);     
}