*{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
}
body{
  background-image: url(thieves/img/bg2.png);
}
 
.item{
  margin:1em;
  padding:0.7em;
  border-radius: 7px;
  color:black;
  outline:#1e0631 2px solid;
  background-color: rgb(249, 244, 255) ;
}

.head{
    text-align: center;
    max-width: 700px;
    margin-left:auto;
    margin-right:auto;
}
.page{
    margin:auto;
    padding:0.4em;
    max-width: 1000px;


}
.flex{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.container {
    position: relative;
    max-width: 300px;
    margin:.6em
  }
  
  .cap {
    display: block;
    max-width:100%;
    height: auto;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #00000086;
  }
  .title{
    text-decoration: none;
    color:white;
    font-weight:bold
  }
  .container:hover .overlay {
    opacity: 1;
  }
  
  .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }