@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: 'Poppins';
}

body{
    height: 100vh;
    background-size: 100% 100%;
    background-color: #6C4C35;
}

.container{
    width: 101%;
    height: 60px;
    padding-left: 20px;
    padding-top: 30px;
    border: 1px solid #000;
    background-color: #0E191D;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container:hover{
    color: wheat;
}

h1{
    color: whitesmoke;
}

.line1{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;

}

.blok1{
    transition-duration: 0.5s;
   width: 24.5%;
   height: 210px;
   border: 1px solid #000;
   border-radius: 20px;
   background-size: 100% 100%;
   background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRwcueWkuTez1sch5qQcwpsOrmTac-8Cb6RVA&s);
}
.blok2{
    transition-duration: 0.5s;
   width: 24.5%;
   height: 210px;
   border: 1px solid #000;
   border-radius: 20px;
    background-size: 100% 100%;
   background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTt86DsU1Q3xw88uFHJBX_QMC8I3y-B6g4TyQ&s);
}
.blok3{
    transition-duration: 0.5s;
   width: 24.5%;
   height: 210px;
   border: 1px solid #000;
   border-radius: 20px;
    background-size: 100% 100%;
   background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSMLUw_X2smffRlEVykJqQ-2TVxkrXdmB1V_Q&s);
}
.blok4{
    transition-duration: 0.5s;
   width: 24.5%;
   height: 210px;
   border: 1px solid #000;
   border-radius: 20px;
    background-size: 100% 100%;
   background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQdF0YdkZWSjvTz0MOZfI5sABbmXQkYwj-9-A&s );
}

.blok1:hover{
    transform: translateY(-20px);
}
.blok2:hover{
    transform: translateY(-20px);
}
.blok3:hover{
    transform: translateY(-20px);
}
.blok4:hover{
    transform: translateY(-20px);
}

h1{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
    text-align: center;
}

a{
    width: 100%;
    height: 35px;
    border: 1px solid #000;
    color: white;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: darkslategray;
    margin-bottom: 40px;
}