*,
::before,
::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
  font-family: "Roboto", Sans-serif;
}

a {
  text-decoration: none !important;
}

img {
  max-width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100dvh;
  margin: 0;
  background-color: #00061c;
  padding: 60px 30px 15px;
}
.title {
  color: #FFF;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid hsla(0, 0%, 50%, 0.5);
}
.title-2 {
  color: #FFF;
  font-size: 1.15rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}
b {
  font-weight: 900;
}
.logo {
  margin-bottom: 20px;
}
.buttons {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.back {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid hsla(0, 0%, 50%, 0.5);
  color: #8e8e8e;
  display: flex;
  align-items: center;
  gap: 5px;
}
.back span:hover {
  cursor: pointer;
}
button {
  padding: 20px 20px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #006cdb;
  color: white;
  transition: background-color 0.3s;
  font-weight: bolder;
}
button:hover {
  background-color: #0056b3;
}
footer {
  margin-top: 20px;
  text-align: center;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
  animation: fadeIn 0.4s;
}
.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 300px;
  animation: slideIn 0.4s;
}
.error-back {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.back svg:hover {
  cursor: pointer !important;
}
p#error-title {
  color: #d83b3b;
  font-weight: bolder;
  font-size: 24px;
  text-align: center;
}
.title-3 {
  font-size: .7rem;
  color: white;
  text-align: center;
}
.error-description {
  margin-top: 30px;
}
p#error-description {
  font-size: 24px;
  margin-bottom: 60px;
  font-weight: 500;
}
.error-title-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.content{
  max-width: 22.625rem; /* 363px */
  width: 100%;
}

@media (min-width: 1024px) { /* lg breakpoint */
  .content {
      max-width: 28.625rem; /* 458px */
  }
}
@media(max-width: 1023px) {
  .header img {
    padding: 0 60px;
  }
  body {
    padding-top: 1rem;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0);
  }
}
