@font-face {
  font-family: 'Montserrat Bold';
  src: url(https://moviecenter.com.mx/public/assets/Montserrat-ExtraBold.ttf);

}
@font-face {
  font-family: 'Montserrat';
  src: url(https://moviecenter.com.mx/public/assets/Montserrat-Regular.ttf);
}

@font-face {
  font-family: 'Folio';
  src: url(https://moviecenter.com.mx/public/assets/folioxb.ttf);
}

body {
  margin: 0;
  min-height: 100svh;
}

.social-media-container {
  width: 80%; 
  display: flex; 
  justify-content: end;
}

.social-media-container p {
  color: #fff;
  margin: 0;
}

.social-media-container>div>a {
  width: 42px;
  height: 42px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media-container svg path {
  fill: #17479e
}

nav {
  width: 80%; 
  display: flex; 
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
}

nav>ul{
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style-type: none;
}

nav>ul>li>a{
  text-decoration: none;
  color: #000
}

main{
  width: 100%; 
  display: flex; 
  justify-content: start;
  align-items: center;
  flex-direction: column;
  min-height: 100svh;
  background: #333548;
  /* background: radial-gradient(circle, rgba(5,127,188,1) 20%, rgba(51,53,72,1) 72%); */
  gap: 40px;
  padding: 100px 0;
}

main>h1{
  text-align: center;
  color: #fff;
  font-size: 60px;
  font-family: 'Montserrat Bold';
}

.card {
  width: 80%;
  /* border: #fff 2px solid; */
  background: rgba(52,51,60,1);
  background: linear-gradient(180deg, rgba(52,51,60,1) 20%, rgba(50,69,102,1) 72%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: .5rem;
  animation: breathe 2s linear infinite;
  transition: all 0.2s linear;
}


@keyframes breathe {
  0% {
    -webkit-box-shadow: 0 0 1px #f0b83f;
    box-shadow: 0 0 1px #f0b83f;
  }

  50% {
    -webkit-box-shadow: 0 0 30px #f0b83f;
    box-shadow: 0 0 30px #f0b83f;
  }

  100% {
    -webkit-box-shadow: 0 0 1px #f0b83f;
    box-shadow: 0 0 1px #f0b83f;
  }
}

.card img {
  width: 60%;
  max-width: 300px;
}

.card>div{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.card h2 {
  -webkit-text-stroke: 1px #fff;
  font-size: 80px;
  color: transparent;
  margin: 0;
  font-family: 'Folio';
  text-align: center;
}

.card h3{
  font-size: 46px;
  margin: 0;
  font-family: 'Montserrat Bold';
  line-height: normal;
}

.card h3.white {
  color: #fff;
}

.card h3.yellow {
  color: #f0b83f;
}

.card p {
  color: #fff;
  font-size: 32px;
  margin: 0;
  text-align: center;
  font-family: 'Montserrat';
}

.card .price {
  font-size: 60px;
  font-family: 'Montserrat Bold';
}

.card ul {
  color: #fff;
  font-size: 24px;
  margin: 0;
  max-width: 700px;
  font-family: 'Montserrat';
}

#nav-img {
  width: 300px;
}

footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4ac13;
}

footer .first {
  width: 100px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

footer .second {
  width: 100px;
}

footer div{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer div p {
  color: #fff;
  margin: 0;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 600px){

  nav{
    width: 80%; 
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
  }

  nav>ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    flex-direction: column;
    row-gap: 10px;
    column-gap: 10px;
    padding: 0;
  }

  #nav-img{
    width: 150px !important;
  }

  main>h1{
    text-align: center;
    color: #fff;
    font-size: 40px;
  }

  .card {
    width: 70%;
    background: rgba(52,51,60,1);
    background: linear-gradient(180deg, rgba(52,51,60,1) 20%, rgba(50,69,102,1) 72%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .card h2 {
    -webkit-text-stroke: 1px #fff;
    font-size: 50px;
    color: transparent;
    margin: 0;
    text-align: center;
  }

  .card ul {
    color: #fff;
    font-size: 20px;
    margin: 0;
  }
}