
*{
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: white;
}
.main-grid {
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(auto, 25em)1fr); 
}
header {
    background-image: url("img/ddlcwebp.png");
    animation: animate 40s infinite;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.5);
    grid-column: 1/-1;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}
 @keyframes animate {
 25%{
    background-image: url(img/1.png);
    background-size: cover;
 }
 50%{
    background-image: url(img/11.png);
    background-size: cover;
 }
 75%{
    background-image: url(img/2.png);
    background-size: cover;
 }
 100%{
    background-image: url(img/ddlcwebp.png);
    background-size: cover;
 }
}



nav {
    font-size: 30px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
}
.logo {
    height: 100%;
}
h1,p {
    font-family: Arial, Helvetica, sans-serif;
}
.menu ul {
  display: flex;
  list-style: none;
}
.menu ul li {
    padding:2em 2em;
}
.menu ul li a {
    color: white;
    text-decoration: none;
    transition: 0.6s;
}
.menu ul li a:hover {
    color: rgb(136, 215, 255);
    transition: 0.6s;
}
.banner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner h1 {
    font-size: 60px;
}
.banner p {
    font-size: 30px;
    text-align: center;
    max-width: 40%;
    padding: 50px 0;
}
.button {
    background: #abb5e4;
    color: rgb(95, 0, 16);
    padding: 15px 58px;
    border-radius: 20px;
    transition: 0.6s;
    width: 100px;
    height: 15px ;
}
.button:hover{
    background: rgb(95, 0, 16);
    color:#abb5e4;
    transition: 0.6s;
}
.games {
    grid-column: 2/-2;
    height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 230px;
}
.tiless {
    grid-column: 2/-2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
    margin-bottom: 100px;
  
}
.item {
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: 1;
    overflow: hidden
}
 .tiless .item img {
    width: 100%;
    object-fit: cover;

    /* grid-column: 1/-1;
    grid-row: 1/-1;
    width: 400px;
    height: 400px;
    object-fit: cover; */
   
}

.item_overlay h3 {
    color: white;
    padding: 15px 50px;
    transition: 0.6s;
    font-size: 30px;
}


footer {
    background: black;
    grid-column: 1/-1;
    color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    padding: 30px;
    border-top-left-radius: 15px;
    border-top-right-radius:15px ;
}
.logotwo {
    width: 80px;
   margin-right: 1250px;
   margin-top: -80px;
}
.itemimg {
    width: 150px;
}
 p a {
    color: #002fff;
 }

 .contactsBlock {
    grid-column: 2/-2;
    height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 150px;
    padding-bottom: 150px;

 }
 .request {
    grid-column: 2/-2;
    display: flex;
    flex-direction: column;
 }
 input {
   box-sizing: border-box;
   width: 100%;
   border: none;
   border-bottom: 1px solid black;
   font-size: 18px;
   padding: 20px 5px;
   margin: 30px 0;
 }
 input::placeholder {
    color: #203cba;
 }
 .submit {
    width: 300px;
    border-radius: 40px;
    background: black;
    color: white;
    align-self: center;
 }
 .submit:hover{
    cursor: pointer;
 }
 .map_desc{
    grid-column: 2/-2;
    padding: 100px;
 }
 iframe {
    background: black;
    grid-column: 1/-1;
    text-align: center;
    width: 100%;
    height:300px;
 
 }