@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
* {
    padding: 0;
    margin: 0;
    --blue: #41318a;
 

  }

  body {
    background-color: #F7F6FB;
    font-family: 'Poppins', sans-serif;
  }

.container{
  width: 100vw;
  height: 100vh;
}

.footer{
  position: absolute;
  right: 5%;
  bottom: 2%;
  font-size: 2rem;
}

.footer a{
  text-decoration: none;
  color: #181a20;
  transition: all 0.3s;
}

.footer a:hover{
  color: var(--blue);
}

.footer .fa-print{
  margin-left: 10px;
}

.right{
  background-image: url('src/bg-dreapta.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.gps{
  position: absolute;
  right: 10%;
  bottom: 20%;
  width: 30vw;
  transform: scaleX(-1);
}

.text{
  position: absolute;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
  text-shadow: 2px 4px 4px rgba(0,0,0,0.2),
                0px -5px 10px rgba(255,255,255,0.15);
}

h1{
  /* font-size: 2.3rem; */
  font-size: calc(24px + (37 - 24) * (100vw - 320px) / (1920 - 320));
  font-weight: 500;
}

h2{
  /* font-size: 1.82rem; */
  font-size: calc(18px + (29 - 18) * (100vw - 320px) / (1920 - 320));
  font-weight: 500;
}

p{
  /* font-size: .9rem; */
  font-size: calc(10px + (15 - 10) * (100vw - 320px) / (1920 - 320));
  font-weight: 500;
  /* width: 40%; */
  padding: 0 60% 0 0;
}

h2 strong{
  font-weight: 700;
}

p strong{
  font-weight: 600;
}

.button{
  position: relative;
  background-color: var(--blue);
  color: #fff;
  cursor: pointer;
  top: 50px;
  padding: 10px;
  width: 200px;
  border-radius: 9px;
  text-align: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}

/* Keyframes */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(54, 17, 172, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(54, 17, 172, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(54, 17, 172, 0);
  }
}

/* Media querys */



@media (min-width:320px)  {

  p{
    padding: 0 20% 0 0;
  }

}
@media (min-width:481px)  {

  p{
    padding: 0 40% 0 0;
  }

}
@media (min-width:641px)  {
  p{
    padding: 0 50% 0 0;
  }
}
@media (min-width:961px)  {
  p{
    padding: 0 55% 0 0;
  }
}
@media (min-width:1025px) {
  p{
    padding: 0 60% 0 0;
  }
}