@import url('https://fonts.googleapis.com/css2?family=Averia+Sans+Libre&display=swap');
header{
    background-color:#D8D5AF;
    position:fixed;
    width:100%;
    height:160px;
    top:0px;
    left:0px;
    z-index:2;
    
}
header p{
    float:right;
    padding:2%;
}

body{
    background-color: #F1EFD8;
    font-family: 'Averia Sans Libre';
    width:100%;
    
}
header img{
    width:250px;
    height: 160px;
}
.sidebar{
    height:100%;
    width:200px;
    position:fixed;
    left:0px;
    top:160px;
    background-color:#EF81AF ;
}
.sidebar a{
    display:block;
    font-family: 'Averia Sans Libre';
    padding:10px;
    font-size: 30px;
    background-color: #E168A4;
    color:#7D425F;
    text-decoration: none;
}
.sidebar a:hover{
    background-color: #7D425F;
    color: #E168A4;
}
.home{
    z-index:1;
    position:absolute;
    left:200px;
    top:160px;
    bottom:100px;
    width:75%;
    height:100%;
    color:#3C4452;
    padding:20px;
}
.home h2{
    font-size: 30px;
}
.home p{
    font-size: 20px;;
}
.home img{
    width:350px;
    height:350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gridPets{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5%;
}

.pet{
    background-color: #D8D5AF;
    border-radius: 25px;
    z-index: 2;
    padding:5%;
}
button{
    color:#3C4452;
    background-color: #f8a7d0;
}

footer{
    position:fixed;
    bottom: 0px;
    left:0px;
    width:100%;
    height:100px;
    background-color: #6F93A8;
    text-align: center;
    z-index:2;
}
footer a{
    font-size:15px;
    
}