html {
    background-color: #200020;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo {
    padding-bottom: 160px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.botones {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn, .numero {
    width: 92vw;
    max-width: 500px; 
    height: 50px;
    margin: 6px;
    border-radius: 5px;
    box-sizing: border-box;
}

.btn {
    background-color: #da0081;
    color: white;
    border: none;
}

.numero {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
}