
* {
  padding: 0;
  margin: 0;
  line-height: 1;
  box-sizing: border-box;
  cursor: default;
}

::selection {
  background-color: rgba(73, 0, 112, 0.719);
  color: #fff;
}

a, input[type='submit']{
  cursor: pointer;
}

html {
  font-family: 'Montserrat', cursive;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;

}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-padding-top: 600px;
  scroll-behavior: smooth;
}



/* ------------------header--------------- */

header {
  /* background-color: #321A59; */
  background-color: #131313;
  /* background-color: #3f0059; */
  display: flex;
  height: 60px;
  align-items: center;
  padding:0 3em;
  position:fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 20px 0 #181818;
}

header h2 {
  flex-grow: 1;
  font-family: 'Montserrat', cursive;
  font-size: 3rem;
}

header ul{
 list-style-type: none;
 display: flex;
 gap: 20px;
}

header ul li {
  font-size: 2rem;
  font-family: 'arial', sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

header a {
  color: white;
  text-decoration: none;
  transition: .3s;
  padding: .8rem;
  border-radius: 5px;

}
header a:hover {
  color: #ffa14d;
}

/* -----------------content----------------- */

section {
  display: flex;
  flex-grow: 1;
  padding-top:6rem;
  flex-direction: column;
}

.title-section {
  font-family: 'Montserrat', cursive;
  color:#321A59;
  font-size: 5rem;
}

/* ----------footer------------- */

footer {
  background-color: #131313;
  color: white;
  padding:1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer {
  padding:4em 0;
  width: min(100% - 2rem, 90rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer h3 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
}

.footer a {
  color: white;
  transition: .3s;
  text-decoration: none;
  font-size: 2rem;
  padding:.3em 0;
}

.footer a:hover {
  color: #ffa14d;
}

footer i {
  color: #321A59;
  background-color: white;
  border-radius: 200px;
  padding:1rem;
  margin: 1rem .5rem;
  font-size: 2rem;
  transition: .3s;
}

footer i:hover {
  color:white;
  background-color: #ffa14d;
}


.footer .sections {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer .sections > div {
  width: 33%;
  height: 100%;
}

.footer .contact div {
  display: flex;
}

.footer .contact h3 {
  color: #ffa14d;
}

.footer .loc {
  display: flex;
  justify-content: center;
}

.footer .autre {
  display: flex;
  justify-content: right;
}

.footer .loc .middle {
  display: flex;
  flex-direction: column;
  width: 180px;
}

.footer .autre .right {
  display: flex;
  flex-direction: column;
  width: 200px;
}

.footer .credits {
  padding-top: 5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 1000px)  {
  header ul li {
    font-size: 1.3rem;
}
}

@media screen and (max-width: 720px)  {
  /* ------------header------------- */
  header {
    justify-content: center;
}

header h2 {
    display: none;
}

header ul li {
    font-size: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* ------------footer------------- */

  .footer .sections {
    flex-direction: column;
}

.footer .sections > div {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}
}





