@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --BCK-COLOR: goldenrod;
}

html {
  font-size: 1.75rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

body {
  min-height: 100vh;
  background-image: url(images/background.jpg);
  background-size: cover;
  display: flex;
  flex-flow: column nowrap;
}

.container {
  flex-grow: 1;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: aliceblue;
  font-weight: bold;
}

h1 {
  color: var(--BCK-COLOR);
}

button {
  color: #016f32;
  width: 150px;
  padding: 14px;
  font-weight: bold;
  background: var(--BCK-COLOR);
  border: none;
  border-radius: 2px;
  margin-bottom: 4px;
}