* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: white;
}

body {
    background: linear-gradient(#1354A5 0%, #041832 33.33%, #041832 66.67%, #01080E 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


body::before {
    background-image: url("img/code.png");
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.container {
    max-width: 90%;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
    border: 1px solid #1875E8;
    box-shadow: 4px 4px 20px 0px rgba(1, 8, 14, 0.15);
    background-image: url("img/Ruido.png");
    background-size: 100% 100%;
    position: relative;
    padding: 2rem;
}


.container__conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.container__informacoes {
    padding: 2rem;
}

.container__botao {
    border-radius: 16px;
    background: #1875E8;
    padding: 16px 24px;
    width: calc(50% - 0.5em);
    font-size: 24px;
    font-weight: 700;
    border: none;
}

button:disabled {
    background-color: gray;
}

.container__texto {
    margin: 16px 0 16px 0;
}

.container__texto-azul {
    color: #1875E8;
}

.container__input {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    background-color: #FFF;
    border: none;
    color: #1875E8;
    padding: 1rem;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.container__botoes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 1em;
    margin-top: 2rem;
}

h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 48px;
    padding-bottom: 2rem;
}

p,
button {
    font-family: 'Inter', sans-serif;
}
#dica {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    background: #1875E8;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    margin-top: 1rem;
}
#dica:disabled{
    background-color: gray;
}

.texto__paragrafo {
    font-size: 20px;
    font-weight: 400;
}

.iconeMicrofone {
    width: 32px;
    height: 32px;
    z-index: 1;
    position: absolute;
    right: 20%;
    top: 35.5%;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 2rem;
    }
    h1 {
        font-size: 36px;
        padding-bottom: 1.5rem;
    }
    .container__input {
        height: 48px;
        font-size: 16px;
    }
    .container__botao {
        padding: 12px 18px;
        font-size: 18px;
    }
  
    .container__informacoes {
      padding: 1rem;
    }
  }
.texto__paragrafo {
    font-size: 32px;
    font-weight: 400;
}
