* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    background: hsl(120, 8%, 48%);
}

.crz_titulo {
    display: flex;
    justify-content: center;
    font-size: 40px;
}

.cruzadas {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border: 1px solid;
    width: 100%;
    padding: 10px;
    gap: 10px;
}

.crz {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    width: 150px;
    height: 50px;
}

.refl_titulo {
    display: flex;
    justify-content: center;
    font-size: 40px;
    padding: 5px;
    margin-top: 10px;
}

.reflexoes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border: 1px solid;
    width: 100%;
    padding: 10px;
    gap: 10px;
}

.reflexoes button {
  background-color: rgb(81, 81, 104);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.voltar{
    position: absolute;
    font-size: 15px;
    color: black;
    font-weight: bold;
    right: 5%;
    top: 2%;
    transform: translate(2%, 5%);
}