* {
  box-sizing: border-box;
  font-family: cursive, Verdana, Tahoma, sans-serif;
  word-spacing: 4px;
}

html {
  font-family: sans-serif;
}

body {
  margin: 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 40rem;
}

header {
  padding: 0 0.625rem;
  background: #36007c;
  width: 100%;
  min-height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.26);
}

header h1 {
  font-size: 1.5rem;
  color: white;
  margin: 0 auto;
  padding-top: 0.5rem;
  font-family: cursive, Tahoma, sans-serif;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
  word-spacing: 12px;
}

.adress-header {
  margin: auto;
  font-size: 1.2rem;
  text-transform: capitalize;
  word-spacing: 4px;
}

header img {
  margin-right: 1rem;
  width: 50px;
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.9));
}

button {
  font: inherit;
  font-size: 1.25rem;
  background: #36007c;
  color: white;
  border: 1px solid #36007c;
  border-radius: 6px;
  padding: 0.25rem 1rem;
  margin: 0.75rem 0;
  cursor: pointer;
}

.color-btn {
  text-shadow: 1px 1px 2px rgb(0 0 0 / 90%);
  box-shadow: 1px 2px 2px rgb(0 0 0 / 34%);
}

button:focus {
  outline: none;
}

button:hover,
button:active {
  background: #55007c;
  border-color: #55007c;
}

button:disabled,
button:disabled:hover,
button:disabled:active {
  background: #ccc;
  color: #9b9b9b;
  border-color: #ccc;
  cursor: not-allowed;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10;
}

.modal {
  position: fixed;
  top: 25vh;
  left: 10%;
  width: 80%;
  background: white;
  z-index: 20;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
}

.modal__content {
  padding: 1rem;
  min-height: 10rem;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #36007c;
  border-color: #36007c transparent #36007c transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 400px) {
  header h1 {
    margin-left: 1.8rem;
    padding-top: 0;
    font-size: 1.8rem;
    word-spacing: 17px;
  }
  header img {
    margin: 0 1.75rem;
  }
.adress-header {
  font-size: 1.4rem;
  word-spacing: 6px;
}
}

@media (min-width: 768px) {
  .modal {
    left: calc(50% - 15rem);
    width: 30rem;
  }
}
