body {
  background-color: #ffff;
  color: #555;
  font-size: 1.1em;
  font-family: 'Lato', sans-serif;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  line-height: 30px;
}

img {
  width: 250px;
  justify-content: center;
}

h1 {
  text-align: center;
}

h2 {
  margin: 0;
  margin-bottom: 30px;
  text-align: center;
}

main {
  margin: 40px;
}

p {
  text-align: "left";
}

section {
  border: solid #000000;
  border-radius: 5px;
  margin-bottom: 30px;
  width: 50%;
  background-color: #f7f4f4;
}

button {
  height: 36px;
  background-color: rgb(222, 192, 192);
  border-radius: 5px;
}

#projeto1,
#projeto2 {
  padding: 10px 20px;
  line-height: auto;
}

#formulario {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

#notas {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

#btnSituacao {
  width: 300px;
}

#content {
  display: flex;
  margin-top: 50px;
  gap: 20px;
}

#contentCalcMedias {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

.inputCalc {
  width: 110px;
  height: 30px;
  border-radius: 5px;
}

.buttonCalc {
  width: 110px;
  border-radius: 5px;
}

.resultado {
  margin-top: 0;
}

.inputNota {
  width: 80px;
  height: 36px;
  border-radius: 5px;
}

/* Responsividade */
@media screen and (max-width: 950px) {
  #content {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #projeto1,
  #projeto2 {
    height: 100%;
    width: 80%;
  }

  .buttonCalc {
    margin-top: 5px;
  }

  #notas {
    flex-direction: column;
    gap: 30px;
  }

  .inputCalc {
    margin-bottom: 5px;
  }

  #btnSituacao {
    width: 100%;
  }

  .nota label {
    padding-right: 10px;
  }
}