/* css rest */

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

body {
  /* background: linear-gradient( background: rgb(239,99,19);
        background: linear-gradient(90deg, rgba(239,99,19,1) 0%, rgba(255,255,255,1) 100%); ); */
  background-image: url("../images/overwatch_background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* menu principal*/

nav {
  width: 100%;
  z-index: 100;
  position: -webkit-sticky;
}

nav ul {
  list-style-type: none;
  display: flex;
}

nav li {
  flex-grow: 1;
  position: relative;
  text-align: center;
  background-color: white;
}

nav li:hover {
  background-color: black;
}

nav li a {
  text-decoration: none;
  display: block;
  padding: 15px;
  color: #ee6314;
  font-weight: bold;
  border-bottom: 2px solid #ee6314;
}

nav li a:hover {
  color: white;
  background-color: #ee6314;
}

.actif {
  background-color: #ee6314;
  color: white;
}

.actif:hover {
  background-color: white;
  color: #ee6314;
}

/* menu deroulant */

nav li ul {
  position: absolute;
  z-index: 100;
  width: 100%;
  display: none;
}

nav ul li:hover ul {
  display: flex;
  flex-direction: column;
}

.header {
  width: 100%;
}

.logo {
  width: 10%;
  padding-top: 10%;
}

footer {
  background-color: #ee6314;
  box-sizing: border-box;
  flex-basis: 100%;
  padding: 10px;
  display: flex;
  margin-top: 5%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.container {
  height: 90vh;
}
.container2 {
  height: 90vh;
}

.copyright {
  font-size: 1.5em;
  font-weight: bold;
  padding: 1.5%;
}

/* icon */
.social-icon li {
  display: inline-flex;
  margin: 0px 10px 10px 0px;
  font-size: 24px;
  list-style-type: none;
  /* haut, gauche, bas, droite */
  margin: 10px 10px 10px 0px;
  border-radius: 50%;
  transition: 0.5s;
}

.social-icon li a {
  padding: 16px;
  color: #ee6314;
  display: block;
}

.social-icon li:nth-child(1) {
  background-color: #222222;
}

.social-icon li:nth-child(1):hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 10px rgba(255, 255, 255, 0.5);
}

.social-icon li:nth-child(2) {
  background-color: #ffffff;
}

.social-icon li:nth-child(2):hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 10px rgba(34, 34, 34, 0.5);
}

.social-icon li:nth-child(3) {
  background-color: #222222;
}

.social-icon li:nth-child(3):hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 10px rgba(255, 255, 255, 0.5);
}

.social-icon li:nth-child(4) {
  background-color: #ffffff;
}

.social-icon li:nth-child(4):hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 10px rgba(34, 34, 34, 0.5);
}

.social-icon li:nth-child(5) {
  background-color: #222222;
}

.social-icon li:nth-child(5):hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 10px rgba(255, 255, 255, 0.5);
}

#decompte {
  font-weight: bold;
  font-size: 200%;
  text-align: center;
  padding-top: 2%;
}
