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

body {
  background-image: url("../images/brains.jpg");
  background-repeat: repeat;
  /* position: relative; */
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.overlay {
  width: 100vw;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  height: 100vh;
  width: 100%;
  background-color: rgba(255, 190, 200, 0.5);
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: clamp(3.5rem, 8rem, 7vw);
}
