body {
  font-family: "Montserrat", "Inter", sans-serif;
  margin: 0;
  background-color: #fff;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 0;
}

button {
  cursor: pointer;
  color: currentColor;
  padding: 0;
}

input,
select {
  outline: none;
  margin: 0 auto;
}

.visually-hidden {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: none;
  pointer-events: none;
  visibility: hidden;
}

.link-home-cont {
  font-size: 20px;
  margin: 30px;
}

/* Loader */

.loading-screen {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.container-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  height: 96px;
  width: 96px;
  animation: rotate_3922 1.2s linear infinite;
  background-color: #9b59b6;
  background-image: linear-gradient(#f9f987, #000);
}

.container-loader span {
  position: absolute;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  background-color: #9b59b6;
  background-image: linear-gradient(#f9f987, #cdcdcd);
}

.container-loader span:nth-of-type(1) {
  filter: blur(5px);
}

.container-loader span:nth-of-type(2) {
  filter: blur(10px);
}

.container-loader span:nth-of-type(3) {
  filter: blur(25px);
}

.container-loader span:nth-of-type(4) {
  filter: blur(50px);
}

.container-loader::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: #fff;
  border: solid 5px #ffffff;
  border-radius: 50%;
}

.hidden-for-loading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

@keyframes rotate_3922 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Loader */
