@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body,
html {
  scroll-behavior: smooth;
  background-color: #bcbcbc;
}

.container {
  max-width: 1400px;
  padding: 0 3%;
  margin: 0 auto;
}

header {
  width: 100%;
  padding: 10px 0;
  background-color: #acacac;
}

.header-logo {
  color: black;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
}

section.generate-sticker .container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 30px 3%;
}

.sticker-configuration {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticker-configuration h1 {
  margin-bottom: 20px;
}

.sticker-configuration p {
  margin-bottom: 20px;
}

label {
  font-size: 16px;
}

input {
  outline: none;
  height: 40px;
  line-height: 40px;
  font-size: 19px;
  margin-bottom: 20px;
  padding-left: 8px;
  border: 0;
  border-radius: 5px;
}

input[type="text"] {
  width: 100%;
}

select#fontSize {
  display: block;
  font-weight: bold;
  padding: 8px 15px;
  margin-bottom: 20px;
  outline: none;
  cursor: pointer;
}

input[type="color"] {
  display: block;
}

#btn-generateSticker {
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
}

#btn-generateSticker:hover {
  background-color: #e0e0e0;
}

#sticker-viewer {
  width: 100%;
  max-width: 375px;
  border: 5px solid #191919;
  background-color: white;
  display: flex;
  flex-direction: column;
}

#sticker-viewer img {
  width: 100%;
  max-width: 500px;
}

#image-placeholder {
  display: flex;
  width: 100%;
  height: 510px;
  background-color: #bcbcbc;
}

#frase-placeholder {
  width: 100%;
  height: 90px;
  background-color: gray;
}

#frase-placeholder p {
  padding: 0 10px;
  text-align: center;
  line-height: 90px;
  font-size: 22px;
  font-weight: bold;
}

section.filmes {
  background-color: #afafaf;
}

section.filmes .container {
  padding: 30px 3%;
}

.barra-pesquisa {
  max-width: 300px;
  height: 40px;
  background-color: white;
  border-radius: 5px;
  border: 0;
  margin-bottom: 20px;
  display: flex;
}

#search {
  width: 100%;
}

#btn-search {
  width: 20%;
  border: 0;
  background-color: transparent;
  background-size: 35px;
  background-image: url("../images/icon-search.png");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

#filmes-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#filmes-wrapper div {
  width: 20%;
  padding: 8px;
  margin-bottom: 0;
  display: flex;
}

#filmes-wrapper img {
  cursor: pointer;
  transition-duration: 0.3s;
}

#filmes-wrapper img:hover {
  transform: scale(1.03);
}
