body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
}

body,
h1{
    text-align: center;
    color: #ffffff; /* Color del texto (puedes usar nombres, códigos hexadecimales o RGB) */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra del texto */
    }
div {
    box-sizing: border-box;
}
.box {
    position: relative;
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: #ffe5b7;
    background-image: url(../img/Fondo.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boton {
    position: fixed;
    bottom: 40px; /* Distancia desde el borde inferior */
    left: 50%;
    transform: translateX(-50%); /* Centrado horizontal */
    padding: 20px 40px;
    font-size: 24px;
    background-color: #d35400;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.boton:hover {
    background-color: #e67e22;
}