/* ROOT */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap");

body {
  background: url(/images/bg.jpg) center center / cover;
}

/* CONTAINER */

.container {
  height: 100vh;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  margin-top: 10rem;
}

.command {
  display: flex;
  width: 80%;
  justify-content: space-around;
  margin-top: 2rem;
}

aside {
  width: 50%;
  margin-left: 2rem;
}

#quote {
  width: 30%;
}

button {
  margin: 0 auto;
}

.control {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

/* TITLE */

.title h1 {
  font-family: "Roboto", sans-serif;
  font-size: 10rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

.title strong {
  font-size: 5rem;
}

.title h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  text-align: left;
  padding-left: 1rem;
}

img {
  width: 50%;
  height: auto;
}

/* QUOTE */

.quote,
.author,
.sound,
.link {
  margin-top: 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-align: left;
  width: auto;
}

.author {
  font-size: 1.2rem;
  font-style: italic;
  width: auto;
}

.link {
  display: none;
  font-size: 1.2rem;
  width: auto;
  border: #fff solid 1px;
  padding: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.link:hover {
  background: #fff;
  color: #000;
}

.sound {
  text-align: center;
}

/* BUTTON */

.button-56 {
  align-items: center;
  background-color: #7f7a7c;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-56:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform 0.2s ease-out;
  z-index: -1;
}

.button-56:hover:after {
  transform: translate(0, 0);
}

.button-56:active {
  background-color: #fff;
  outline: 0;
}

.button-56:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-56 {
    padding: 0 40px;
  }
}

/* MOBILE */

@media screen and (max-width: 500px) {
  .container {
    flex-direction: column;
    justify-content: flex-start;
  }
  .command {
    flex-direction: column;
  }
  aside {
    width: 100%;
    margin-left: 0;
  }
  .title {
    margin-top: 0;
    width: 100%;
    z-index: 2;
  }
  .title h1 {
    font-size: 4rem;
    text-align: center;
  }
  .title strong {
    font-size: 2rem;
  }
  .title h2 {
    font-size: 2rem;
    text-align: center;
    padding: 0;
  }
  aside {
    position: inherit;
    max-width: 100%;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .quote,
  .author {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  img {
    margin-top: 1.5rem;
    width: 80%;
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
  #quote{
    width: 100%;
  }
}
