@import url("https://fonts.googleapis.com/css2?family=Balsamiq+Sans&family=Cookie&family=Fredericka+the+Great&display=swap");

body {
  background: url(./assets/img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: antiquewhite;
}

.container {
  background: rgba(5, 5, 5, 0.9);
  width: 100%;
  margin: auto;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.titulo {
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 50px;
  font-family: "Fredericka the Great", cursive;
}

#espelhar {
  transform: scaleX(-1);
}

.main {
  width: 80vw;
  margin: auto;
  display: flex;
  justify-content: center;
}

.box {
  padding: 10px;
  margin: 0 10px 0 10px;
  border-radius: 0.5em;
  width: 30vw;
  height: auto;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  font-family: "Fredericka the Great", cursive;
  margin-bottom: 0.5rem;
}

.btn {
  border: 2px solid red;
  color: #f5f5f5;
  font-weight: bolder;
  font-size: 0.7em;
  font-family: "Balsamiq Sans", cursive;
  background: black;
  margin-top: 1.5em;
  padding: 1em 2.5em;
  border-radius: 6em;
  text-transform: uppercase;
  transition: all 0.2s;
  width: auto;
}

.btn:hover {
  transform: translateY(-3px);
  background: red;
  color: black;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0 2em red;
}

#btn-copy {
  border: 2px solid red;
  color: #f5f5f5;
  font-weight: bolder;
  font-size: 0.7em;
  font-family: "Balsamiq Sans", cursive;
  background: black;
  margin-top: 1.5em;
  padding: 1em 2.5em;
  border-radius: 6em;
  text-transform: uppercase;
  transition: all 0.2s;
  width: auto;
}

#btn-copy:hover {
  transform: translateY(-3px);
  background: red;
  color: black;
}

#btn-copy:active {
  transform: translateY(-1px);
  box-shadow: 0 0 2em red;
}

.text-input {
  box-sizing: border-box;
  border-radius: 0.5em;
  border: 2px solid red;
  box-shadow: 0 0 2em red;
  display: block;
  padding: 0.5em;
  width: 100%;
  height: 250px;
  font-size: 20px;
  font-family: "Balsamiq Sans", cursive;
}

a:hover {
  color: var(--link-color-hover);
}

section {
  border: 2px solid red;
  text-align: center;
}

label {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

textarea {
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 10px;
  max-width: 100%;
  line-height: 1.5;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #999;
}

button {
  border: 2px solid orange;
}

footer {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  text-align: center;
  background: rgba(5, 5, 5, 0.9);
  align-items: center;
  display: flex;
  flex-direction: column;
}

em {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-family: "Cookie", cursive;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-left: 2rem;
  margin-top: 1rem;
}