@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;400&family=Niramit:wght@200&family=Pacifico&family=Urbanist:wght@100;300&display=swap");

html,
body {
  padding: 0;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  text-align: center;
  background-color: #595de5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.logo {
  font-family: "Urbanist", sans-serif;
  padding-bottom: 20px;
}

h3 {
  font-family: "Urbanist", sans-serif;
  padding-bottom: 10px;
}

ul,
li {
  list-style: none;
  padding: 20px 0px;
}

.button-link {
  border: solid black 2px;
  padding: 16px 24px;
  display: inline-block;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  min-width: 180px;
}

.button-link:hover {
  background-color: black;
}

.button-link--image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}


