html {
  box-sizing: border-box
}

/* The Universal Selector */
*, /* All elements*/
*::before, /* All ::before pseudo-elements */
*::after { /* All ::after pseudo-elements */
  /* height & width will now include border & padding by default
     but can be over-ridden as needed */
  box-sizing: inherit;
}

body {
  background-color: #DAD7CD;
  color: #1a1a1a;
  /* Use a system font, if none are available use any found sans-sarif font */
  font-family: system-ui, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 
    'Helvetica Neue', sans-serif;
  margin: 0;
  
}

nav {
  background-color: #A3B18A;
  color: #23352c;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 50px;
  min-height: 60px;
}
.nav-item {
  margin: 0 30px;
  font-size: 30px;
}

#nav-title {
  margin-right: 30px;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

ul {
  list-style-type: none;
}

p, label, li, button, input {
  font-size: 18px;
}

label {
  font-weight: bold;
}

section {
  padding: 50px;
}

a {
  color: #3a3b3c;
}

pre {
  font-size: 14px;
}


#main-index {
  display: flex;
  justify-content: center;
}
.btn {
  margin: 16px 0;
}

.link {
  padding: 10px 0;
  font-size: 18px;
  display: inline-block;
}

.profile-avatar {
  margin-top: 50px;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#golf-tee {
  border-radius: 30%;
  margin-top: 15px;
  width: 75%;

}

#welcome-title {
  color: #23352c;
  font-weight: bold;
  font-size: 60px;
  margin-top: 25px;
}

#welcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}

#goal {
  color: #23352c;
  font-weight: bold;
  margin-bottom: 25px;
}

#started {
  color: #23352c;
  font-weight: bold;
}

#steps {
  color: #23352c;
}