:root {
  --primary: #5d3ebc;
  --secondary: #f3f0fe;
  --gray: #a2a2a2;
  --gray-storm: #697488;
  --white: #ffffff;
  --second-white: #dfdee2;
  --dark-gray: #535353;
  --light-gray: #f4f4f4;
  --mid-gray: #838287;
  --black: #3e3e3e;
  --second-black: #525252;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
}

/**
 * Reset
 */

li {
  list-style: none;
}

a {
  text-decoration: none;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
button {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
}

main {
  padding: 0;
  height: calc(100% - 72px);
}

.explanation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../images/doodle.png);
  height: 100%;
}

.explanation h3 {
  color: var(--primary);
  line-height: 38px;
  max-width: 800px;
  text-align: center;
  padding: 12px;
}

.explanation a {
  margin-top: 35px;
}

.button {
  font-size: 14px;
  color: var(--white);
  padding: 11px 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 8px;
  border: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
}

/* Nav Section */

nav {
  height: 72px;
  background-color: var(--primary);
}

nav .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-purple {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
}

.logo-purple img {
  height: 60px;
}
