
.container {
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.dice-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}


.dice {
    display: inline-block;
    text-align: center;
}



h1 {
    margin: 1rem;
    margin-bottom: 2rem;
    font-size: 5rem;
}

p {
    font-size: 2rem;
    color: #232931;
}

img {
    border: 0px;;
    width: 40%;
    margin: 0.5rem;
}

body {
    background-color: #a28089;
    font-family: 'Indie Flower', cursive;  
}
.btn {
    border: none;
    border-radius: 25px;
    height: 50px;
    width: 120px;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    background: black;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px black;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px black;
    background: #333;
}

.btn:active {
    transform: translateY(0px);
}
