body {
    text-align: center;
    background: rgb(238, 174, 202);
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    margin: 3%;
}

:active,
:hover,
:focus {
    outline: 0;
    outline-offset: 0;
}

.title {
    font-family: "Cormorant Infant", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 4rem;
}

.text {
    font-family: "Roboto", serif;
    color: rgba(0, 0, 0, 0.795);
    font-size: 1.5rem;
    font-weight: 300;
    font-style: normal;
}

.inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input {
    padding: 1% 3%;
    margin: 1% 0;
    width: 25vw;
    height: 3vh;
    border: rgba(0, 0, 0, 0.795);
}

.button {
    color: white;
    background-color: rgba(191, 111, 245, 0.295);
    border: 0;
    border-radius: 30px;
    padding: 1.5vh 1.5vw;
}

.button:hover {
    color: blueviolet;
    background-color: rgba(191, 111, 245, 0.582);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.description-voz {
    padding: 1% 0;
}

table {
    border-collapse: collapse;
    border: 2px solid rgb(140 140 140);
    font-family: sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin: 0 auto;
}

thead {
    background-color: rgba(191, 111, 245, 0.295);
}

th,
td {
    border: 1px solid rgb(160 160 160);
    padding: 8px 10px;
}

td:last-of-type {
    text-align: center;
}

th {
    font-weight: bold;
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .title {
        font-size: 3.5rem;
    }

    .text {
        font-size: 2rem;
    }

    .input {
        width: 60vw;
    }

    table {
        font-size: 1.6rem;
    }

    .button {
        padding: 1.5vh 5vw;
    }
}

@media screen and (max-width: 767px) {
    .title {
        font-size: 2.5rem;
    }

    .text {
        font-size: 1.2rem;
    }

    .input {
        width: 55vw;
    }

    table {
        font-size: 1rem;
    }

    .button {
        padding: 1.5vh 5vw;
    }
}
