html, body {
  height: 100%;
  padding-top: 1px;
  box-sizing: border-box;
  margin: 0;
  font-family: 'Montserrat', sans-serif;

}

main {
    background-color: #fbe774;
    margin: 0.5% 0.5% 0% 0.5%;
    height: 95%;
    padding-top: 1px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#info-error {
    flex: 1;
    display: flex;
    opacity: 0;
    transform: translateY(-30px);
    animation: apear 1s ease-out forwards;
}

@keyframes apear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#info-error > div{
    text-align: center;
    font-size: 2.3vw;
    align-self: center;
}

#brand {
    margin: 0.3% 0;
}

h1 {
    font-size: 7vw;
    margin: 0 0 2% 0;
}

@media (max-width: 767px) {
    #info-error > div, h1 {
        display: flex;
        flex-direction: column;
    }
    #info-error > div {
        font-size: 3vw;
    }
    #span-error {
        font-size: 16vw;
    }
    #span-dash {
        display: none;
    }
    h1 {
        padding-bottom: 15%;
    }

}