.mainsection {
  background-color: white;
  margin-top: 5%;
  padding: 2%;
  padding-top: 10%;
  -webkit-box-shadow: 5px 10px;
          box-shadow: 5px 10px;
  border: 0.4em solid;
  -webkit-animation: fadeIn ease 3s;
          animation: fadeIn ease 3s;
}

.logo {
  width: 20%;
  height: auto;
  padding: 0;
}

.logoM {
  margin-left: 10%;
  margin-right: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.5em solid;
  background-color: white;
  -webkit-box-shadow: 5px 10px;
          box-shadow: 5px 10px;
}

li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: white;
  padding: 1em 2.5em;
  text-align: center;
  margin: 5%;
  background-color: #000000;
  border: 0.3em solid;
  font-size: 150%;
}

li a:hover {
  background-color: white;
  color: black;
  -webkit-box-shadow: 5px 10px;
          box-shadow: 5px 10px;
}

ul {
  list-style-type: none;
  padding: 0;
}

.socialmedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 4em;
}

.socialmedia a {
  text-decoration: none;
  color: black;
  margin: 5% 10%;
}

.fab:hover {
  color: red;
}

.contents {
  padding: 5% 5%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(-45deg, #ffffff, #eec9c9, #ff0000);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
  padding-left: 30%;
  padding-right: 30%;
}

h1 {
  font-size: 300%;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 600px) {
  body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  h1 {
    font-size: 150%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 319px) {
  body {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  h1 {
    font-size: 150%;
    display: none;
  }
  .socialmedia {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1280px) {
  body {
    padding-left: 15%;
    padding-right: 15%;
  }
  h1 {
    font-size: 200%;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */