/* Estilos específicos para Landing */

body {
    background-color: black;
    color: red;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-color: red;
    color: white;
    padding: 20px;
}

footer {
    background-color: #222;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.btn {
    background-color: red;
    color: white;
    padding: 10px 20px;
    margin: 20px;
    text-decoration: none;
    border-radius: 5px;
    
}

.btn:hover {
    background-color: darkred;
}

.btn-danger {
    background-color: red;
    color: black;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255,0,0,0.8);
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.btn-danger:hover {
    transform: scale(1.1);
}

.btn-dark {
    background-color: red;
    color: black;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255,0,0,0.8);
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.btn-dark:hover {
    transform: scale(1.1);
}
