body{
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #9abcda;
    margin: 0;
    padding: 20px;
}
.home-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow:  10px 10px 14px rgb(5 48 67 / 50%);
    padding: 30px;
    max-width: 600px;
    margin: auto;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    border: 2px solid #e1e1e1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}
h1 {
    color: #2d76bf;
    margin-bottom: 20px;
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    
}
h2 {
    color: #4053d2;
    margin-bottom: 10px;
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

    
}
button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    outline: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);

}
button:hover {
    background-color: #2980b9;
    transform: scale(1.05);
    cursor: pointer;
}
.rules-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin: 20px auto;
    max-width: 500px;
    padding: 10px;
    color: #27749b;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

}
.game-instructions {
    font-size: 18px;
    color: #249584;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-style: italic;
    letter-spacing: 0.5px;
    text-transform: capitalize;

}


@media (max-width: 600px) {
    .home-container {
        padding: 20px;
        max-width: 90%;
        box-shadow:  5px 5px 10px rgb(5 48 67 / 50%);
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-size: 14px;
        
    }
    h1 {
        font-size: 24px;
        margin-bottom: 15px;

    }
    h3{
        font-size: 14px;
        margin-bottom: 10px;

    }
    button {
        padding: 12px 24px;
        font-size: 14px;
        margin: 15px 0;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.5px;
        border-radius: 6px;
        font-weight: 600;
        text-transform: none;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        user-select: none;
        outline: none;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);

    }
   
    .game-instructions {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.4;
        text-align: center;
        margin-top: 0;
        margin-bottom: 20px;
        font-style: italic;
        letter-spacing: 0.5px;
        text-transform: capitalize;

    }
}


