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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url(https://img.freepik.com/vetores-gratis/linhas-de-grade-horizontais-abstratas-em-design-grafico-de-estilo-grafico_1017-39918.jpg?semt=ais_hybrid&w=740&q=80);
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}


.titulo{
  font-family: "Geo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  text-decoration: underline;
  margin-top: -140px;
}

main {
  display: flex;
  align-items: center;
  gap: 30px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 200px;
  max-width: 400px;
}

.guess-word {
  display: flex;
  gap: 10px;
  font-size: 50px;
  flex-wrap: wrap;
  font-family: "Geo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.btns {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

button {
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: 3px;
}

.btns button {
  width: 30px;
  background-color: #13330d;
}

.new {
  width: 350px;
  background-color: #13330d;
  margin-left: 50% ;
  font-family: "Geo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
}

button:hover {
  opacity: 0.8;
}

.clue {
  font-family: "Geo", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 30px;

}

@media (max-width:650px) {
  main {
    flex-direction: column;
    padding: 10px;
  }
}
