.background-container{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat center;
    width: 100%;
    height: max-content;
}
.blocks{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2% 4% 7% 4%;
}
.block{
    color:#000;
    font-size: 2.2vmin;
    border: 1px  solid #e91e63;
    text-align: center;
    padding: 25px;
}
/*
.block:last-child{
    width:200%;
}
.blocks:last-child{
    width:200%;
}
ayer
*/
/*.bloocks{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 2% 4% 7% 4%;
}*/
/* .bloocks :last-of-type{
    width: 200%;
} */
.block:hover{
    cursor: pointer;
    border:solid 1px #e91e63;
	background-color: #000;
	color: #fff;
}
.title_thoughts{
    text-align: center;
    color: #000;
}
.title_poems{
    text-align: center;
    color: #000;
}
.modal {
  display: none; 
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100vh;
  overflow: auto;
  background-color:#1F0954;
}
.modal-content {
  text-align: center;
  display: block;
  height: 100vh;
  padding:100px 35px 25px 35px;
}
.modalTitle{
    color: #fff;
    font-size: 3rem;
    margin-bottom: 50px;
}
.modalText{
  font-size: 1.2rem;
  color: #fff;
}
a{
	text-decoration:none;
	font-size: 15px;
	font-weight: bold;
}
a:hover{
	color: #e91e63;
}
.close {
  position: absolute;	
  color: #e91e63;
  top: 0px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #e91e63;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 900px){
    .background-container{
        /*background-image: url("img/001.jpg");*/
        padding: 5% 0;
        height: max-content;
    }
    .blocks{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .blocks div:last-of-type{
        color: #000;
        width: 100%;
    }
    .block{
        color: #000;
        font-size: 3.2vmin;
        border: 1px  solid #e91e63;
        text-align: center;
    }
    .block:last-child:hover{
        color: #fff;
    }
    .title_thoughts{
        text-align: center;
        color: #000;
        padding: 2% 0 0 0;
    }
    .modal-content {
        text-align: center;
        display: block;
        height: 100vh;
        /* padding:60px 20px 10px 20px; */
    }
    .modalTitle{
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .modalText{
        font-size: .8rem;
    }
}