body{
    margin: 0;
    padding: 0;
    background-image: url(../images/background-index.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
}

header{
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.comp-button{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: white;
}

.comp-button svg{
    margin-top: 12px;
    margin-left: 10px;
}

.container{
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    font-size: 20px;
    margin-bottom: 30px;
}

a{
    text-decoration: none;
    color: white;
}

.azulejo{
    width: 100%;
    height: 56px;
    background-color: crimson;
    margin: 7px;
    border-radius: 17px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
    display: flex;
    justify-content: space-between;
}

.azulejo:hover{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transition:cubic-bezier(.07,1.41,.82,1.41) 0.2s;
    -webkit-transition:cubic-bezier(.07,1.41,.82,1.41) 0.2s;
    -moz-transition:cubic-bezier(.07,1.41,.82,1.41) 0.2s;
    -ms-transition:cubic-bezier(.07,1.41,.82,1.41) 0.2s;
    -o-transition:cubic-bezier(.07,1.41,.82,1.41) 0.2s;
}

.imagen-contenedor{
    height: 96px;
    width: 96px;
    border-radius: 48px;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -ms-border-radius: 48px;
    -o-border-radius: 48px;
    overflow: hidden;
}

.imagen-contenedor img{
    height: 100%;
}

.azulejo-comp-button{
    margin: 8px;
    width: 40px;
    height: 40px;
    background-color: yellowgreen;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.icono{
    width: 24px;
    height: 24px;
    margin: 8px;
}

footer{
    background-color: purple;
    opacity: 0.7;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    text-align: center;
}

a:last-of-type{
    margin-bottom: 60px;
}

.azulejo-comp-button svg{
    margin-top: 12px;
    margin-left: 10px;
}

#notificacion {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px;
    text-align: center;
    transition: top 0.5s ease-in-out;
}

#notificacion.oculto {
    top: -50px;
}