@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: #141E30;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #243B55, #141E30);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #243B55, #141E30); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  min-height: 100vh;
  padding: 10px 0px;
}

a{
  text-decoration: none;
  color: white;
}

.title{
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

p{
  cursor: default;
}

.pictures{
  vertical-align: top;
  text-align: center;
  height: 30vh;
  margin-bottom: 200px;
}

.fox{
  height: 100%;
  border: none;
  border-radius: 20px;
  margin-left: 50px;
  margin-right: 50px;
  transition: height 0.3s, border-radius 0.3s;
}

.fox:hover, .lake:hover, .train:hover{
  height: 150%;
  border-radius: 10px;
}

.lake, .train{
  height: 100%;
  border: none;
  border-radius: 20px;
  transition: height 0.3s, border-radius 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;
}