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

html {
  height: 100%;
}

body {
  margin: 0;
  font-family: Roboto, Lato, Arial;
  color: #111111;
  background-color: #E5E5E5;
  padding-top: 100px;
  padding-bottom: 120px;
  min-height: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #111111;
  transition: .3s ease;
}

a:hover,
.active {
  text-shadow: 0px 0px 6px rgba(183, 35, 163, 0.7);
}

.projects-icon:hover,
.contact-icon:hover {
  box-shadow: 0px 0px 6px rgba(183, 35, 163, 0.7);
}

#backToTopButton {
  display: none;
  font-size: 30px;
  font-weight: bold;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  border-radius: 40px;
  background-color: #111111;
  color: rgb(183, 35, 163);
  box-shadow: 0px 0px 20px rgba(183, 35, 163, 0.8);
  cursor: pointer;
  transition: .7s ease;
  padding-bottom: 10px;
}

#backToTopButton:hover {
  background-color: #E5E5E5;
  box-shadow: 0px 0px 30px rgba(45, 35, 183, 0.8);
  color: #111111;
}

.container {
  font-size: 30px;
  font-weight: bold;
  width: 460px;
  margin: 90px auto 63px auto;
}

#contact {
  background: #E5E5E5;
  padding: 25px;
  margin: 150px 0;
  box-shadow: 0 0 20px 0 rgba(183, 35, 163, 0.8), 0 5px 5px 0 rgba(183, 35, 163, 0.8);
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: rgba(183, 35, 163, 0.8);
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type="submit"]:hover {
  background: rgba(183, 35, 163, 0.8);
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}