@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

html, body {
  background-color: #282a36;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-gap: 10px;
  height: 100%;
  width: 100%;
}

.block {
  background-color: #ff79c6;
  height: 300px;
  width: 300px;
  justify-self: center;
  align-self: center;
}

#top-left {
  justify-self: end;
  align-self: end;
}

#top-right {
  justify-self: start;
  align-self: end;
}

#bottom-left {
  justify-self: end;
  align-self: start;
}

#bottom-right {
  justify-self: start;
  align-self: start;
}

input {
  border: 1px #f1fa8c solid;
  background: #44475a;
  color: white;
  border-radius: 5px;
  padding: 10px;
  width: 80px;
}

input:focus {
  outline-color: #50fa7b;
}

#output {
  padding: 40px;
  color: white;
}

#output > div {
  padding: 20px;
  background: #44475a;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}

svg {
  height: 20px;
  cursor: pointer;
}

#response {
  margin-top: 20px;
  text-align: center;
  background: #50fa7ad3;
  padding: 20px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
}