body{
    display: flex;
    justify-content: center; align-items: center;
    width: 100vw; height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url('./pedagogo/img/moroccan-flower.png');
}

.home img{ width: 100%; height: auto;}
.home{
    width: 500px;
    height: auto;
    display: flex; flex-wrap: wrap; justify-content: center;
}
.home button{
    width: 100px;
    margin: 1em;
    padding: .3em 1em;
    border-radius: .3em;
    border: none;
    outline: none;
    font-size: 1.2rem;
    color:#fff;
    background-color: rgb(3, 172, 184);
    cursor: pointer;
}
.home button:hover{
    color: #fff;
    background-color: #00b7ff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.home a { text-decoration: none;}

@media (max-width: 414px) {
    .home { 
        width: 100vw;
        margin: 2em;
    }

}