@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff3f3;
  color: rgb(54, 54, 54);
  font-family: "Montserrat", serif;
  line-height: 1.5;
}

header {
  font-family: "Philosopher", serif;
  width: 100%;
  min-height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  min-height: 20rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 60%;
  margin: 0 auto;
}

main h2 {
  text-align: center;
  padding-bottom: 2rem;
}

.bottom {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  justify-content: end;
  align-items: flex-end;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
  color: #ededed;
}
