* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Dancing Script";
  src: url("fonts/DancingScript-VariableFont_wght.ttf");
}

* {
  font-family: "Dancing Script", cursive;
}

@font-face {
  font-family: "Caveat Brush";
  src: url("fonts/CaveatBrush-Regular.ttf");
}

*.font-less-bling, *.font-less-bling * {
  font-family: "Caveat Brush", sans-serif;
}

.section {
  min-height: 100vh;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section:nth-child(1n) {
  background-color: #ced4da;
}

.section:nth-child(2n) {
  background-color: #dee2e6;
}

.section:nth-child(3n) {
  background-color: #e9ecef;
}

#profile_picture {
  height: 128px;
  border-radius: 128px;
}

#name {
  margin: 5px 0;
}

#title {
  margin: 5px 0;
}

.button {
  color: #343a40;
  border: 1px solid #343a40;
  border-radius: 4px;
  outline: none;
  padding: 3px 6px;
  text-align: center;
  font-weight: bold;
}

.button:hover {
  color: #212529;
  border: 1px solid #212529;
  outline: none;
  box-shadow: 1px 1px 3px #212529;
}

#nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#nav .button {
  margin: 0 5px;
  width: 96px;
}

a {
  color: #343a40;
  text-decoration: none;
}

a:hover {
  color: #212529;
  text-decoration: underline;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h5,
p,
li,
a {
  font-size: 1.2rem;
}

.padding-left-0 {
    padding-left: 0;
}

.list-style-none {
    list-style: none;
}

.list-style-disk {
    list-style-type: disc;
}

.list-style-circle {
    list-style: circle;
}

.section h3 {
    margin: 5px 0;
}

h5 {
    margin: 5px 0;
}

.block {
    display: block;
}

li.fix {
  display: flex;
  flex-direction: row;
  align-items: center;
}

li.fix > * {
  margin: 0 3px;
}

ul.more-list-space > li {
  margin: 12px 0;
}