:root {
  --primary: #ae2727;
  --white: #fff;
}

* {
  padding: 0;
  margin: 0;
  outline: none;
  text-decoration: none;
  list-style: none;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.body-wrapper {
  flex-direction: column;
  justify-content: left;
  min-height: 100vh;
}

.underlined {
  text-decoration: underline;
}

button {
  cursor: pointer;
  transition: 0.2s;
  border: none;
  font-family: "NTR", sans-serif;
  font-size: 1vw;
  border: none;
}

.super-btn {
  padding: 2vh 0;
  width: 15vw;
  box-shadow: 0.3vw 0.3vw 2vw 0.1vw rgba(0, 0, 0, 0.25);
  background-color: var(--white);
  color: var(--primary);
  border-radius: 0.5vw;
  font-family: "Basic", sans-serif;
}

.super-btn:hover {
  transform: translateY(-0.16vw);
  box-shadow: 0.42vw 0.42vw 4.17vw 0.26vw rgba(0, 0, 0, 0.25);
}

.right-arrow-btn {
  padding: 1vh 2vw;
  background: none;
  gap: 1vw;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.right-arrow-btn i {
  transition: 0.2s;
}

.rotated-arrow {
  transform: rotate(-45deg);
}

.main-wrapper {
  width: 100%;
}

main {
  display: grid !important;
  grid-template-columns: 1.2fr 6fr;
  padding: 2vh 2vw;
  gap: 2vw;
}

.displayer {
  grid-column: 2;
  background-color: #fff;
  border-radius: 0.5vw;
  min-height: 100vh;
}

.displayer-wrapper {
  flex-direction: column;
  justify-content: left;
  padding: 5vh 3vw;
}

.editor-btn {
  padding: 1.6vh 2.5vw;
  background-color: #ae2727;
  border-radius: 1.5vw;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1vw;
  color: #fff;
  transition: 0.2s;
}

.editor-btn:hover {
  transform: translateY(-0.3vh);
  background-color: #9a2222;
  color: #fff;
  box-shadow: 0.3vw 0.3vw 2vw 0.1vw #ae2727;
}

#current-location-wrapper {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1vw;
  color: #000;
}

#current-location {
  color: #000;
}

#current-location:hover {
  text-decoration: underline;
}
