  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
      font-family: Arial, sans-serif;
      background-color: black;
      background-image: url(assets/bg.gif);
}

header {
    height: 150px;
    overflow:auto;
    display: unset
}

#logo {
    margin: 2%;
    position: sticky;
    top: 2%;
    height: 10vh;
}

.title {
  color: #fff;
  font-size: 10vw;
  padding: 0 20px;
  font-weight: 700;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
}

.stroked-title {
  color: transparent;
  -webkit-text-stroke: 2px white;
}

.cranberry {
  align-items: center;
  display: flex;
  height: 100vh;
  position: relative;
  justify-content: center;
  z-index: -1;
  margin-bottom: 10vw;
  margin-top: 10vw;
}

.blueberry {
  align-items: center;
  display: flex;
  position: relative;
  justify-content: center;
  z-index: -1;
  margin-bottom: 10vw;
}

.raspberry {
  align-items: center;
  display: flex;
  height: 100vh;
  position: relative;
  justify-content: center;
  z-index: -1;
  margin-bottom: 20vw;
}

.can1 {
  border-radius: 20px;
  position: relative;
  transform: rotate(-15deg);
  width: 25vw;
  margin-right: 25%;
}

.can2 {
  border-radius: 20px;
  position: relative;
  transform: rotate(15deg);
  width: 25vw;
  margin-left: 25%;
}

.can3 {
  border-radius: 20px;
  position: relative;
  transform: rotate(-15deg);
  width: 25vw;
  margin-right: 25%;
}

@media (max-width: 768px) {
    .cranberry {
        height: 40vh;
    }
    .blueberry {
        height: 40vh;
    }
    .raspberry {
        height: 40vh;
    }
}