body {
  background-image: url(../images/index/background.png);
  background-repeat: no-repeat;
  background-size: 100%;
  overflow-x: hidden;
  font-size: 28px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #574943;
}

button {
  width: 125px;
  height: auto;
  background: transparent;
  border: none !important;
  cursor: pointer;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #3f3531;
}

h2 {
  margin-top: 20px;
}

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, #55484225, #574943, #55484225);
}

a {
  text-decoration: none;
}

#container {
  width: 100%;
  height: 100%;
  text-align: center;
}

#introduction-background {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: #666262ff;
  background-image: url(../images/index/introBackground.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

#introduction-background > button {
  position: relative;
  top: 40%;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
}

#introduction-background > button:hover {
  animation-name: bounce;
  animation-timing-function: ease;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

#content {
  width: 100%;
  height: auto;
}

#icon-row {
  width: 100%;
  height: auto;
  margin-top: 40px;
  position: relative;
}

#icon-row > a > button {
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 30px;
  background-color: #c2c0c0;
}

#first,
#second,
#third {
  stroke-width: 1px;
  stroke-dashoffset: 0;
  stroke-dasharray: 2000;
  animation-name: ring;
  animation-duration: 0.75s;
  animation-direction: normal;
  animation-play-state: paused;
}

#first:hover,
#second:hover,
#third:hover {
  animation-play-state: running;
}

@keyframes ring {
  0% {
    stroke-dashoffset: -2000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

#text-area {
  width: 450px;
  height: 350px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 50px;
  border-radius: 50px;
  position: relative;
  background-color: #c2c0c0;
}

#text-area > h3 {
  padding-top: 20px;
}

#text-area > p {
  margin: 30px;
  text-align: justify;
}

#background-waves {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
