* {
  font-family: "Montserrat";
  margin: 0;
  padding: 0;
}

:root {
  --primary-background-color: #ff0a0a;
  --page-color: #f5f5f5;
  --secondary-background-color: #0a0903;
}

/* HEADER */
#icons {
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  #icons {
    display: flex;
    align-items: center;
    font-size: 3em;
  }
  #icons:before {
    content: "\2630";
  }
  .active #icons:before {
    content: "\2715";
  }
  nav ul {
    position: fixed;
    left: -100%;
    top: 5.3rem;
    flex-direction: column;
    background: #ff0a0a;
    width: 100%;
    text-align: center;
    transition: 0.25s;
  }
  nav li {
    padding: 3px 0;
  }
  nav li:hover {
    background: #f53030;
  }
  nav.active ul {
    left: 0;
  }
  nav li {
    font-size: 20px;
    margin: 20px;
  }
}

nav ul {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  align-items: center;
}

li {
  list-style: none;
}

a,
a:hover {
  color: #0a0903;
  text-decoration: none;
  text-transform: uppercase;
}

a:hover {
  color: white;
}

header {
  display: flex;
}

nav {
  display: flex;
  justify-content: space-between;
  align-content: center;
  background: #ff0a0a;
  padding: 10px;
  width: 100%;
  font-size: calc(0.4rem + 0.7vw);
  font-weight: 500;
}
nav img {
  width: 65px;
}

/* MAIN */

#welcome {
  height: 250px;
  width: 100%;
  background-image: url("./assets/altere.jpg");
  background-size: cover;
}

h1 {
  font-size: 30px;
  color: white;
  text-align: center;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  top: 27%;
  padding-top: 5rem;
}

p {
  text-align: justify;
  padding: 1rem;
}

@media (min-width: 768px) {
  p {
    margin-left: 15%;
    margin-right: 15%;
  }
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.photo-angelina {
  justify-content: center;
  height: 200px;
  width: 200px;
  padding: 1rem;
}

.coach1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.photo-sebastien {
  height: 200px;
  width: 200px;
  padding: 1rem;
}

.coach2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

.photo-maeva {
  height: 200px;
  width: 200px;
  padding: 1rem;
}

.coach3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

.photo-nico {
  height: 200px;
  width: 200px;
  padding: 1rem;
}
.coach4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

main p {
  display: none;
}

.photo-angelina,
.photo-maeva,
.photo-sebastien,
.photo-nico,
#toggleText1,
#toggleText2,
#toggleText3,
#toggleText4 {
  transition: transform 0.5s;
}

.photo-angelina:hover {
  transform: scale(1.1);
}

.photo-sebastien:hover {
  transform: scale(1.1);
}

.photo-maeva:hover {
  transform: scale(1.1);
}

.photo-nico:hover {
  transform: scale(1.1);
}

#toggleText1:hover {
  transform: scale(1.05);
}

#toggleText2:hover {
  transform: scale(1.05);
}

#toggleText3:hover {
  transform: scale(1.05);
}

#toggleText4:hover {
  transform: scale(1.05);
}

h2 {
  padding-bottom: 1rem;
}

/* FOOTER */

footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #ff0a0a;
  width: 100%;
  position: absolute;
}

footer img {
  width: 73px;
}

.copyright {
  font-size: 1em;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .copyright {
    font-size: 1.3em;
  }
}
