@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color-scheme: dark;
}
body {
  font-family: 'Lato', sans-serif;
}

#app {
  text-align: center;
}

#app p {
  text-align: center;
}

/* HEADER */

header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-image: url('./logo.webp');
  background-repeat: inherit;
  height: auto;
}

header h1 {
  font-size: 2.5em;
  text-align: center;
  text-wrap: balance;
  color: #fff;
  text-transform: uppercase;
  background-color: #2d3142;
}

header img {
  width: 100px;
  border-radius: 50%;
}

.respUser {
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
}
.correctAnswer {
  color: green;
}
.not {
  color: red;
}

.main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.main img {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 10px;
}

.image {
  max-width: 5%;
  cursor: copy;
}
.image:hover {
  box-shadow: 0 2px 0px 0px #fff;
}

button:active {
  background: rgb(194, 152, 166);
}
button {
  border: none;
  background: palevioletred;
  border-radius: 15px;
  padding: 5px 15px;
  z-index: 99;
  transition: all 0.2s;
  display: block;
  width: 100%;
  margin: 0 10px;
}
button:hover {
  color: rgb(168, 38, 82);
  box-shadow: 0 0 8px white;
  cursor: pointer;
}
.btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #333;
}
.btn nav {
  display: flex;
  justify-content: center;
}

.btn button {
  height: 40px;
  width: 100px;
}

.marsha_top img {
  margin: auto;
  width: 100%;
  filter: drop-shadow(0 0 0.25rem rgb(255, 255, 255));
  padding-left: 10px;
}

.apple {
  max-width: 800px;
  margin: 2rem auto;
  transition: all 2s ease-in-out;
  border-radius: 8px;
  border: 1px solid red;
}

.sinal {
  flex: 1 100px;
  font-size: 1em;
}

.sinal--container {
  overflow: hidden;
}

.container {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 0 auto;
  min-height: calc(100dvh - 50px);
  margin-top: 10px;
  max-width: 60rem;
}

#name {
  background: rgb(168, 38, 82);
  padding: 10px;
  border-radius: 20px;
}

.sumNum {
  font-size: 3.5em;
}

label,
input {
  cursor: pointer;
  display: inline-block;
  text-align: left;
  margin: 0.6rem;
  padding: 8px;
}
label {
  border: 1px solid red;
  width: 200px;
  border-radius: 8px;
}

label span {
  color: pink;
  font-weight: bolder;
}

label:hover {
  box-shadow: 0 0 2px 2px red;
}

ul li {
  list-style-type: none;
}

.radio_opt {
  flex: 1;
  align-self: center;
}
.radio_opt fieldset {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
}

.correctAnswser {
  background-color: seagreen;
  border: none;
}

.toast {
  height: 50px;
  overflow: hidden;
}

fieldset {
  border: 1px solid;
  border-radius: 8px;
  padding-inline: 10px;
  padding: 1rem;
}

fieldset legend {
  font-weight: 900;
  padding-inline: 1rem;
}

/* FOOTER */
footer {
  margin-top: 2rem;
  text-align: center;
  padding: 2vh;
  font-size: small;
  background-color: #2d3142;
}
