@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

* {
  margin: 0;
  padding: 0;
  font-size: 1em;
  transition: opacity 0.2s;
}

body {
  background-color: #fff;
  color: #fff;
  font-family: "Bebas Neue", cursive;
  user-select: none;
}

#pointp1,
#pointp2 {
  color: green;
}

#go:hover {
  color: rgb(206, 206, 206);
}

img {
  border-radius: 10px;
}

select {
  cursor: pointer;
}

#wrapper {
  max-width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(8, 1fr);
}

#middle {
  background-color: #1f1f1f;
  border-radius: 10px;
  grid-area: 2/2/8/6;
  -webkit-box-shadow: 0px 0px 27px 2px rgba(97, 43, 43, 0.2);
  box-shadow: 0px 0px 27px 2px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 4em;
  text-align: center;
}

h2 {
  font-size: 2.2em;
}

p {
  font-size: 2em;
}

.flex {
  display: flex;
  width: 100%;
  text-align: center;
  margin-top: 0.2em;
}

img {
  width: 60%;
}

.flex div:first-child {
  width: 50%;
}

.flex div:nth-child(2) {
  width: 50%;
}

#go {
  text-align: center;
  cursor: pointer;
}

#go:active {
  transform: scale(1.1);
  transition: all 0.1s;
}

select {
  padding: 5px;
  text-align: center;
  margin-bottom: 1em;
}

@media only screen and (max-width: 1000px) {
  h1 {
    margin-top: 1em;
    margin-bottom: 2em;
  }
  #middle {
    grid-area: 1/1/9/7;
    border-radius: 0px;
  }
  #go {
    margin-top: 3.5em;
  }
  img {
    width: 90%;
  }
}
