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

body {
  background-color: #ffffff;
  font-family: "Ubuntu", sans-serif;
}

.mainContent {
  display: flex;
  padding: 1.5rem 20% 0;
  justify-content: space-between;
}

.imgHeader {
  display: flex;
  padding: 1.3rem 20% 0;
}

.imgHeader span {
  display: flex;
  align-items: center;
  color: #616e7d;
  font-weight: 500;
}

.imgLupa {
  width: 90px;
}

.containerInput {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 45px;
  padding: 0 20%;
}

.containerInput input {
  background-color: transparent;
  border-radius: 10px;
  padding: 5px;
  width: 380px;
  border: none;
  font-size: 26px;
  color: #3a3434;
  outline: none;
}

#containerRes {
  display: none;
  width: 27.313em;
  max-width: 27.313em;
  height: 25em;
  max-height: 35em;
  background-color: beige;
  color: #3a3434;
  text-align: start;
  padding: 10px;
  border-radius: 10px;
  white-space: normal;
  overflow: auto;
  overflow-x: hidden;
}

.containerInput input::placeholder {
  font-family: "Ubuntu", sans-serif;
  color: #616e7d;
  font-size: 26px;
}

.sectionInput {
  display: flex;
  position: relative;
  flex-direction: column;
  height: 670px;
  width: 680px;
  padding: 20px;
}

.bottomSec {
  display: flex;
  flex-direction: column;
}

.warnDiv {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  bottom: 0;
}

.divCopy {
  display: flex;
  justify-content: center;
  padding-top: 25px;
}

.containerInfo {
  position: absolute;
  bottom: 0;
  margin-bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.buttons {
  display: flex;
  gap: 20px;
}

.buttons button {
  transition: all 100ms ease;
}

.buttons button:hover {
  transform: scale(1.1);
}

.footerSec {
  position: absolute;
  bottom: 0;
  width: 100%;
  align-items: center;
  margin: 0 auto;
}

.containerFooter {
  display: flex;
  padding: 1.3rem 20%;
  justify-content: space-between;
  align-self: center;
  align-items: flex-end;
}

.containerContatos img {
  width: 20px;
}

.containerContatos a {
  color: #3a3434;
}

.containerContatos .gitHub {
  display: flex;
  gap: 5px;
}

.containerContatos p {
  padding-bottom: 2px;
}

.containerContatos .linkedin {
  display: flex;
  gap: 5px;
}

.imgLogo {
  max-width: fit-content;
}

.imgLogo img {
  width: 120px;
}

.containerInfo button {
  font-size: 16px;
  width: 180px;
  height: 50px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #fff;
}

.btnCript {
  background-color: #616e7d;
}

.btnDescrip {
  background-color: #82bfab;
}

.sectionResult {
  width: 460px;
  height: 650px;
  color: white;
  padding: 10px;
  border-radius: 10px;
  background-color: #8ca3bd;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  align-content: center;
  text-align: center;
}

.sectionResult img {
  width: 330px;
}

.btnCopy {
  display: none;
  background-color: #82bfab;
  font-size: 16px;
  width: 180px;
  height: 50px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 767px) {
  .mainContent {
    flex-direction: column;
    padding: 1rem;
  }

  .containerFooter {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .mainContent {
    padding: 1rem 10%;
  }
}

@media (max-width: 710px) {
  .mainContent {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .sectionResult {
    height: 500px;
  }
}
