*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin: center center;
    font-family: Helvetica;
}
body{
    background:url(Tecno.jpg);
}
.FondoColor{
    background-color:#a27708 ;
    height: 40px;
    position: relative;
}
.subtitulo{
    color: black;
     font-size:30px;
     position: relative;
     font-style: italic;
     text-align: center;
}
#Quest{
    
    text-decoration: none;
    color: white;
    text-align: center;
    padding: 0% 10%;
    font-size: 20px;
}
button{
    border: 1px dotted springgreen;
    text-align: center;;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 40px;
    width: 80px;
}
.a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.contenedor-botones {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 80px;
    background: #141414;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s ease all;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.boton span {
    position: relative;
    z-index: 2;
    transition: .3s ease all;
}
.boton.uno::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #c4b107;
    position: absolute;
    z-index: 1;
    top: -80px;
    left: 0;
    transition: .3s ease-in-out all;
}

.boton.uno:hover::after {
    top: 0;
}