@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');

header {
  font-family: 'Creepster';
}

:root {
  --padding-container: 100px 0;
  --color-title: orange;

}

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px;
}

.hero {
  width: 100%;
  height: 70vh;
  max-width: 800 px;
  min-width: 600px;
  position: static;
  display: grid;
  grid-template-rows: 100px 1fr;
  color: white;
}

.nav {
  --padding-container: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__links {
  color: white;
  text-decoration: none;
}

.nav__items {
  list-style: none;

}

.nav__link {
  font-size: 22px;
  padding: 0;
  margin-left: auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 4em;
}

.nav__menu {
  margin-left: auto;
  cursor: pointer;
  display: none;
}

.nav__img {
  display: block;
  width: 30px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: linear-gradient(180deg, #00000057 0%, #00000057 100%), url(https://medialab.news/wp-content/uploads/2020/09/cine.jpg);
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
  z-index: -1;
}

h3 {
  color: #361E5C;
  font-style: bold;
  font-family: 'Special Elite';
  font-size: 21px;

}

h2 {
  font-family: 'Creepster';
  color: #361E5C;
  font-style: normal;
  font-size: 30px;
}

p {
  color: #361E5C;
  text-align: justify;
  font-family: 'Special Elite';
  font-size: 18px;
  line-height: 1.5em;
}

h4{
  color: #361E5C;
  text-align: justify;
  font-family: 'Special Elite';
  font-size: 20px;
  line-height: 1.5em;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 40%;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.container {
  padding: 2px 16px;
}

.hero__container {
  max-width: 800px;
  display: grid;
  --padding-container: 0;
  grid-auto-rows: max-content;
  align-content: center;
  gap: 1em;
  padding-bottom: 100px;
  text-align: center;
}

.hero__title {
  font-size: 5rem;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Special Elite';
}

.mySlides {
  display: none;
}

img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.roll {
  float: right;
  height: 250px;
  width: 250px;
  padding-left: 15px;
  padding-top: -20%;
  padding-right: 15px;
  padding-bottom: 25%;
  padding-top: 0%;
}

.roll1{
  float: left;
  height: 250px;
  width: 250px;
  padding-left: 15px;
  padding-top: -20%;
  padding-right: 15px;
  padding-bottom: 25%;
  padding-top: 0%;
}

.text_roll{
  float: none;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px
  }
}

/*footer*/



footer{
  background-color: #361E5C;
  width: 100vw;
  height: 100hv;

}

.footerContainer{
  width: 100%;
  padding: 70px 30px 20px ;
}

.socialIcons{
  display: flex;
  justify-content: center;
}

.socialIcons a{
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
}

.socialIcons a i{
  font-size: 2em;
  color: #361E5C;
  opacity: 0.9;
}

/*Over effect social media icons*/

.socialIcons a:hover{
  background-color: #361E5C;
  transition: 0.5s;
}

.socialIcons a:hover i{
  color: white;
  transition: 0.5s;
}

.footerNav{
  margin: 30px 0;
}

.footerNav ul{
  display: flex;
  justify-content: center;
  list-style: none;
}

.footerNav ul li a{
  color: white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
  transition: 0.5s;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 4em;
  list-style: none;
}

.footerNav ul li a:hover{
  opacity: 1;
}

.footerBottom{
  background-color: #361E5C;
  padding: 20px;
  text-align: center;
}

.footerBottom p{
  color: white;
  text-align: center;
}

.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}

@media (max-widht: 700px){
  .footerNav ul{
    flex-direction: column;
  }
  .footerNav ul li{
    width: 100%;
    text-align: center;
    margin: 10px;
  }
}