body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.jumbotron {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.jumbotron h1 {
    font-size: 2.5rem;
    color: #dc3545; 
}

.jumbotron p {
    font-size: 1.2rem;
    color: #6c757d; 
}

.custom-btn {
    background-color: #D81F2D; 
    color: white; 
    border: none; 
    transition: background-color 0.3s, transform 0.3s;
}

.custom-btn:hover {
    background-color: #C2182B;
    transform: scale(1.05);
}

.custom-btn:focus {
    outline: none; 
    box-shadow: none; 
}

@media (max-width: 576px) {
    .jumbotron h1 {
        font-size: 2rem;
    }

    .jumbotron p {
        font-size: 1rem;
    }
}