body {
  background: url("./bg.jpeg");
  font-family: sans-serif;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.3);
  height: 100%;
  backdrop-filter: blur(3px);
  z-index: -1;
}

a {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 30px;
  height: 40px;
  border: 0;
  color: white;
  font-size: 17px;
  box-shadow: 0 3px 0 black;
  position: relative;
}

h1 {
  font-family: sans-serif;
  font-size: 2.3rem;
  margin-bottom: 10px;
  background: linear-gradient(
    to right,
    #ef5350,
    #f48fb1,
    #7e57c2,
    #2196f3,
    #26c6da,
    #43a047,
    #eeff41,
    #f9a825,
    #ff5722
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  -webkit-text-stroke: 2px white;
}

.link-one {
  background: #2196f3;
}
.link-two {
  background: #7e57c2;
}
.link-three {
  background: #f9a825;
}

@media screen and (min-width: 375px) {
  h1 {
    font-size: 3rem;
  }
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 6rem;
  }
}
