*{
    margin:0px;
    padding: 0px;
}
body{
    background-color: #0a1930;
}
.Contenedor{
    background-color:#172b46;
    margin: auto;
    margin-top: 50px;
    width: 470px;
    height: 490px;
    box-shadow:2px 2px 20px 1px #000;
}
.title1{
    position: relative;
    text-align: center;
    width:250px;
    height: 50px;
    margin: auto;
}
.title1 p{
    position: absolute;
    color:#fff;
    font-size: 23px;
    font-family: Arial;
    font-weight: bold;
    margin:15px 10px 0px 10px;
}
#Contenido{
    margin: 0px 20px 0px 20px;
    background-color: #fff;
    border: 2px solid #133B51;
    width: 410px;
    height: 100px;
    color:#000;
    padding: 10px;
    font-size: 20px;
    font-weight: 3px;
    font-family: sans-serif;
}
.Section1{
    width: 265px;
    margin: 40px 0px 20px 100px;
}
.Section1 button{
    border-radius:2px;
    background-color: #fff;
    border: none;
    width: 130px;
    height: 30px;
    color: #172b46;
    font-size: 14px;
    font-family: Arial;
    cursor: pointer;
    transition: all 0.5s;
}
.Section2{
    width: 265px;
    margin: 30px 0px 20px 100px;

}
.Section2 button{
    border-radius:2px;
    background-color: #fff;
    border: none;
    width: 130px;
    height: 30px;
    margin:5px 0px 5px 0px ;
    color: #172b46;
    font-size: 14px;
    font-family: Arial;
    cursor: pointer;
    transition: all 0.5s;
}
.Cambios{
    margin: 50px 20px 0px 20px;
    display: flex;
    justify-content: space-between;
}
#Anterior{
    text-decoration: none;
    background-color: #fff;
    color: #172b46;
    font-size: 14px;
    font-family: Arial;
    cursor: pointer;
    border-radius: 2px;
    padding: 8px 8px 8px 8px;
    transition: all 0.5s;
}
#Siguiente{
    left: 300px;
    text-decoration: none;
    background-color: #fff;
    color: #172b46;
    font-size: 14px;
    font-family: Arial;
    cursor: pointer;
    border-radius: 2px;
    padding: 8px 8px 8px 8px;
    transition: all 0.5s;
}
button:hover{
    background-color: #2AB652;
    color: #fff;
}
button:active{
    background-color: #0A4A1C;
}
#Siguiente:hover{
    background-color: #2AB652;
    color: #fff;
}
#Siguiente:active{
    background-color: #0A4A1C;
}
#Anterior:hover{
    background-color: #2AB652;
    color: #fff;
}
#Anterior:active{
    background-color: #0A4A1C;
}