@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}


body h2 {
  color: rgb(0, 0, 0);
}

main {
        height: 50%;
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        background-color: rgb(204, 208, 212);
        border-radius: 20px;
        padding: 10px;
        margin: 20px;
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.spnQtd {
  text-align: end;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

button {
  width: 100%;
  text-align: start;
  padding: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #008CCC;
  color: white;
}

.finish {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.finish button {
  text-align: center;
}
.logo{
    display: none;
}
.main_header{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    height: 70px;
    width: 100%;
    background-color: rgb(59, 91, 117);
}
.links{
    margin-top: 20px;
    margin-right: 15%;
    width: 50%;
    height: 100%;
    
}
@media only screen and (max-width: 450px){
    .logo{
        display: none;
    }
    .main_header{
        display: flex;
        flex-direction: row;
        text-align: center;
        justify-content: center;
        height: 50px;
        width: 100%;
        background-color: rgb(59, 91, 117);
    }
    .links{
        margin-top: 20px;
        margin-right: 0;
        width: 50%;
        height: 100%;
        
    }
    .main_header p{
        margin-left: 12px;
        font-size: 18px;
    }
    
    main{
    width: 90%;
    font-size: 15px;
}
}