* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Montserrat', sans-serif;
}

.item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover;
  transition: .6s;
}

.item1 {
  height: 50px;
  background-image: url('https://cdn.pixabay.com/photo/2019/06/07/10/44/sunset-4257963_960_720.jpg');
}

.item2 {
  height: 400px;
  background-image: url('https://cdn.pixabay.com/photo/2017/08/31/14/18/end-of-summer-2700879_960_720.jpg');
  background-position: center;
}

.hide {
  height: 400px;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

section {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

button {
  margin: 0 30px;
  padding: 10px 30px;
  background: none;
  border: 2px solid #00cfff;
  border-radius: 5px;
  color: #00cfff;
  font-size: 36px;
  cursor: pointer;
  transition: color .3s, box-shadow .3s;
  box-shadow: 3px 3px 10px #00cfff
}

button:hover {
  color: #00ffae;
  box-shadow: 3px 3px 10px #00ffae;
}

.fas {
  transition: transform .6s;
}

a {
  display: flex;
  justify-content: center;
  /* align-items: flex-end; */
  margin: 50px;
  color: #333;
  text-decoration: none;
  font-size: 24px;
  transition: transform 0.3s;
}

a:hover {
  color: #555;
  transform: scale(0.9);
}
