    
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #2A275E; 
}

#arrow {
    max-height: 40px;
    max-width: 40px;
    margin: 15px;
}


main{
    margin: 2%;
}

section {
    border-radius: 10px;
}

.star{
    display: flex;
    flex-direction: column;
}

#nivel1 {
    background-image: url(../img/pepu/nivel_1.png);
    background-repeat: no-repeat;
    background-size: 100%;
    max-width: 100%;
    padding: 15px;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}

#nivel2 {
    background-image: url(../img/pepu/nivel_2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    max-width: 100%;
    
    padding: 15px;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#nivel3 {
    background-image: url(../img/pepu/nivel_3.png);
    background-repeat: no-repeat;
    background-size: 100%;
    max-width: 100%;
    
    padding: 15px;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

button {
    background-color: white;

}


h1{
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    font-weight: 100em;
    font-size: 1em;
    color: white;

}