*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  padding-top: 100px;
  font-size: 1.6rem;
  font-family: sans-serif;
  color: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.nav {
  padding: 10px;
  padding-bottom: 10px;
  overflow: auto;
  min-height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #24252a;
  justify-content: space-around;
  margin-bottom: 100px;
  box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.5);
}
.nav > div {
  white-space: nowrap;
}
.logo-bakery {
  word-spacing: -4px;
  white-space: break-spaces;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  transition: all 0.5s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.logo-bakery:hover {
  cursor: default;
  transform: scale(1.5);
  text-shadow: 0.5px 0.5px 2px rgba(255, 255, 0, 0.5);
}
.btn {
  /* display: inline-block; */
  padding: 8px 20px;
  border-radius: 20px;
  border: 0;
  outline: 0;
  color: white;
  margin: 1px;
}
.btn--primary {
  background-color: #1c96b6;
}
.btn--secondary {
  background-color: transparent;
}
.btn--secondary:hover,
.btn--primary:hover {
  box-shadow: 0 0 15px 2px #ffffff;
  background-color: #0488a4;
  cursor: pointer;
}
.multi-buttons-container {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 800px) {
  body {
    flex-direction: row;
  }
  .nav {
    flex-direction: column;
    margin: 1px;
  }
  .multi-buttons-container {
    flex-direction: column;
  }
  .logo-bakery:hover {
    transform: scale(1.1);
    text-shadow: 0.5px 0.5px 5px rgba(255, 255, 0, 0.8);
  }
}
