@charset "utf-8";

#title{
    color:none;
    font-size: 3em;
}
body{
    background: linear-gradient(135deg, #69DADB , #1597E5,#113CFC);
    text-align: center;
}
h1{
    background-color: #B8DFD8;
    text-align: center;
    margin-top: 0px;
    border-radius: 20px;
    color: #47597E;   
}

p{
    color: #47597E;
    font-weight: bold;
}

ul{
    display:flex;
    justify-content: center;
    list-style: none;
    padding: 5px;
    
}
li{
    background: #B8DFD8;
    color: 47597E;
    font-size: 15px;
    border-radius: 10px;
    padding: 5px;
    margin: 3px;
    font-style: italic;
}
a{
    color: 47597E;
    text-decoration:none;
    font-size: 1.5em;
}

.container{
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  body{
    background-color: #eee;
    font-family: 'Open Sans', sans-serif;
  }
  
  
  .container{
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3em;
    margin-bottom: 3em;
    
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
  
  
  .item{
    background-color: #B8DFD8;
    cursor: pointer;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.095);
    transition: all 300ms;
    position: relative;
    border-radius: 20px;
  }
  
  
  .item::after {
    content: "";
    background-color: rgba(179, 229, 252, .1);
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    transform: scale(0);
    transition: all 300ms;
    opacity: 0;
  }
  
  .item:hover:after{
    opacity: 1;
    transform: scale(1);
  }
  
  .item:hover {
    transform: scale(1.05);
  }
  
  .item-text{
    padding: 1em;
  }
  
  
  .item-img{
    max-width: 100%;
    display: block;
    width:230x;
    height:220px;
  background-size: 100% 100%;
  background-repeat:no-repeat;
  }

  h3{
      color: #47597E;
  }
  
  
  @media screen and (min-width: 590px) {
    
    .container{
      grid-template-columns: repeat(2, 1fr);
    }
    
  }
  
  
  
  @media screen and (min-width: 960px) {
    
    .container{
      grid-template-columns: repeat(3, 1fr);
    }
    
  }