@font-face {
  src: url(../fonts/FROSTY.TTF);
  font-family: frosty;
}

body{
  background-color: rgb(222, 223, 231);
  width: vw;
}
h1 {
  width: 100%;
  height: 100px;
  text-align: center;
  font-family: frosty,Arial, Helvetica, sans-serif;
  font-size: 20px;
  letter-spacing: 6px;
  line-height: 50px;
  background-color: aliceblue;
 }
.container {
  padding-top: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  align-content: space-evenly;
}
.item {
  border: 3px solid black;
  padding: 5px 5px;
}
.item:hover {
 background-color: aliceblue;
}
.item p {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}
.vid-winter {
  /* padding-bottom: 150px; */
  width: 500px;

}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 100px;
  }
}
