
	/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');


/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;;
  font-size: 1rem;
	background-color: #754E8F;  
  color: #fff;
}

h1 {
  font-weight: 700;
	color: #EAD0C5;
  font-size: 3rem;
}

p {
  line-height: 2;
	color: #EAD0C5;
  
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
	color: #f4cdcd;
}

img {
  max-width: 100%;
  height: auto;
  justify-self: center;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1240px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
  padding: 8rem 0;
}

.center {
  text-align: center;
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: box-shadow .3s, background .4s;
	background-color: #50a4ce;
}

.nav {
    margin-top: 0;
    padding: 1rem;
}


.nav__list {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  row-gap: 2rem;
  column-gap: 3rem;
}

.nav__link {
  font-weight: 700;
  transition: color .4s;
}


.slots {
  justify-content: center;
}
.slots img{
    height: 300px;
    width: 300px;
    border-radius: 50px;
}
/*=============== FOOTER ===============*/
.footer {
  position: relative;
  padding-block: 3rem 2rem;
  overflow: hidden;
}

.footer__copy {
  text-align: center;
  font-size: .8rem;
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

}



@media screen and (min-width: 767px) {
  .nav {
    column-gap: 3rem;
  }


  .nav__list {
    flex-direction: row;
    
  }

  .nav__menu {
    margin-left: auto;
    box-shadow: none;
  }

}

/* For large devices */
@media screen and (min-width: 1024px) {

  .slots {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media screen and (min-width: 1064px) {
  .container {
    margin-inline: auto;
  }

}
