@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');

body{
  font-family: Poppins;
  margin: 0;
  color: #eee;
}

.container{
  background: #0F2027;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  min-height: 100vh;
  padding: 10px 0px;
}

.title{
  font-size: 3vw;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.imges{
  width: 100vw;
  text-align: center;
  margin-bottom: 30px;
}

.img{
  max-width: 15%;
  border-radius: 15px;
  margin: 5px 10px;
  transition: box-shadow 0.3s;
}

.img:hover, .landscape:hover{
  box-shadow: 0px 0px 40px rgb(255, 255, 255);
}

.landscape{
  max-width: 30%;
  border-radius: 15px;
  margin: 5px 10px;
  transition: box-shadow 0.3s;
}

header{
  width: 1200px;
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  grid-template-rows: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
}
header .logo{
  font-weight: bold;
}
header .menu{
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: 500;
}

a{
text-decoration: none;
color: white;
}