:root {
  --bg: linear-gradient(135deg, #4a7ba7 0%, #6ba3e5 45%, #a87dd8 100%);
  --primary-color: white;
  --button: rgb(140, 0, 255);
  --button-hover: rgb(100, 0, 182);
  --link: lightgrey;
  --link-hover: black;
  --danger: #ef4444;
  --success: #22c55e;
}

body {
  background: var(--bg);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, Arial, sans-serif;
}

p,
a,
form,
input,
button,
label {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

body {
  color: var(--primary-color);
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  font-family: inherit;
}

a {
  color: var(--link);
}
a:hover {
  color: var(--link-hover);
}

input,
button {
  border-radius: 12px;
  margin: 10px 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

input {
  margin-top: 2px;
  height: 40px;
}
button {
  background: var(--button);
  color: white;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid rgb(130, 0, 245);
  margin: 10px;
  height: 70px;
}

button:hover {
  background: var(--button-hover);
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  button{
    width: 120px;
    height: 50px;
  }
}
