@import url("https://fonts.googleapis.com/css?family=Open+Sans");

* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(45deg, #ff4331, #d31a50);
  overflow: hidden;
}

.toasts {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.toast {
  background-color: #ffffff;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  font-family: inherit;
  border-radius: 10px;
  margin: 5px 10px;
}

.btn {
  font-size: 18px;
  font-family: inherit;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px;
  border: 0;
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.btn:active {
  transform: scale(0.95);
}
