* { box-sizing: border-box; margin: 0; padding: 0; }
:root { --maxScreenWidth: 1920px; }

body {
  background: linear-gradient(45deg,#1C1C1C,#2E2E2E);
  margin: auto;
  max-width: var(--maxScreenWidth);
}

::-webkit-scrollbar { -webkit-appearance: none; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,#2E2E2E,#141415);
  border-radius: 20px;
  border: 2px solid white;
}

/*.............................*/

header {
  background: linear-gradient(180deg,#2E2E2E,#141415);
  border-top: 2px solid #434342;
  border-bottom: 2px solid #434342;
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 30px;
  width: 100%;
  max-width: var(--maxScreenWidth);
  z-index: 1;
}


header > div {
  border-radius: 100%;
  display: block;
  position: absolute;
  left: 5%;
  top: -25px;
}
header > div > img {
  display: block;
  height: 120px;
  width: 110px;
  position: absolute;
  z-index: 1;
}


header > i {
  color: white;
  cursor: pointer;
  display: none !important;
  font-size: 3.5em;
  transition: 0.3s linear;
  margin-right: 15px;
  padding: 7px;
}


header > nav {
  display: inline-flex;
  font-family: 'Spartan', sans-serif;
  font-size: 17px;
  transition: 0.2s linear;
  margin-right: 15px;
}
header > nav > a {
  color: white;
  cursor: pointer;
  display: block;
  transition: all 0.3s linear;
  text-decoration: none;
  padding: 25px;
}
header > nav > a:hover {
  transition: all 0.2s ease-out;
  text-shadow: 0 0 10px white;
}

.navbar-pageFocus {
  background: white !important;
  box-shadow: 0 0 10px gray;
  color: #1C1C1C !important;
  font-weight: bold;
  text-transform: uppercase;
}

/*.............................*/

.simpleContainer {
  align-items: center;
  background: white;
  border-radius: 5px;
  border: 2px solid #BDBDBD;
  box-shadow: 0 0 10px gray;
  color: #1C1C1C;
  display: flex;
  margin: auto;
  margin-top: 35px;
  padding: 25px;
  width: 96%;
}


.simpleContainer .paragraph {
  display: table;
  margin: auto;
  width: 100%;
}

.simpleContainer .paragraph > p {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 25px;
  text-align: justify;
  margin: auto;
  max-width: 525px;
}


.simpleContainer .title {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 75%;
} .simpleContainer .title { font-size: 5em; }

.simpleContainer .title > h1 {
  display: block;
  font-size: 30px;
  font-family: 'Spartan', sans-serif;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 400px;
}


.simpleContainer > .expose {
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  padding: 45px 0px;
  width: 100%;
}


.simpleContainer > .expose > article {
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 0 10px gray;
  cursor: pointer;
  display: flex;
  font-size: 25px;
  flex-direction: column;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  margin: 0 10px;
  padding: 25px 15px;
  width: 100%;
}

.simpleContainer > .expose > article > i {
  font-size: 4em; 
  margin-bottom: 30px;
}

.simpleContainer > .expose > article > img {
  border-radius: 10px;
  box-shadow: 0 0 25px #BDBDBD;
  display: block;
  height: 200px;
  transition: 500ms ease-in;
  margin-bottom: 15px;
  user-select: none;
  width: 200px;
}

.simpleContainer > .expose > article:hover > img {
  transition: 500ms linear;
  transform: rotateY(360deg);
}

/*..............................*/

footer {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  font-family: 'Spartan', sans-serif;
  text-align: center;
  padding: 25px;
  padding-top: 50px;
}

footer i {
  display: block;
  font-size: 3em;
  margin-right: 15px;
}

footer > img {
  display: block;
  height: 175px;
  width: 150px;
}
footer > h1 { margin: 15px 0; }
footer > h2 { margin: 25px 0; }

footer > div {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
footer > div > p {
  align-items: center;
  display: flex;
  margin: 0 15px;
}

/*..............................*/

@media screen and (max-width: 1150px) {
  .simpleContainer { flex-direction: column-reverse; }
  .paragraph { margin: 25px auto !important; }
  .paragraph > span { display: none; }

  .simpleContainer > .expose { padding-bottom: 0; }
  .simpleContainer > .expose > article { margin-bottom: 40px; }
}

@media screen and (max-width: 720px) {
  header > i { display: block !important; }
  header > nav {
    background: linear-gradient(180deg,#2E2E2E,#141415);
    flex-direction: column;
    text-align: center;
    position: absolute;
    transition: 0.3s linear;
    margin-right: 0;
    transform: translate(-105%,70px);
    width: 100%;
  }

  .navbar_show > nav { transform: translate(0,70px); transition: 0.2s linear; }
  .navbar_show > i { transform: rotate(90deg); transition: 0.2s linear; }

  
  footer > img { height: 150px; width: 150px; }
  footer > h2 { max-width: 500px; }
  footer > div {
    align-items: center;
    flex-direction: column;
  }
}

@media screen and (max-width: 500px) {
  header > div > img {
    height: 100px;
    top: 10px;
    width: 90px;
  } header > nav > a { font-size: 15px; }

  .simpleContainer .title { width: 100%; }
  .simpleContainer .title > h1 { font-size: 20px; }
  .simpleContainer .paragraph > p { font-size: 20px; }
}