html {
    background: linear-gradient(90deg, #98c218, #1ea7b3) no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 15px;
    font-style: normal;
}
@font-face {
    font-family: 'horizon';
    src: url('/horizon.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}
#mensagem {
    padding: 50px;
    border-radius: 20px;
    background-color: whitesmoke;
    width: min-content;
    display: flex;
}
input {
    padding: 10px;
    border-radius: 15px;
}
#nome {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
#nome input{
    width: 40%;
}
#info {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
#info input{
    width: 40%;
}
#serviço {
    display: flex;
    justify-content: center;
}
#serviço input{
    width: 100%;
    height: 80px;
}
#tipo {
    display: flex;
    gap: 1px;
    justify-content: center;
}
#serviço1{
    display: flex;
    justify-content: center;
    align-items: center;
}
#serviço2{
    display: flex;
    justify-content: center;
    align-items: center;
}
#enviar {
    padding: 10px;
    background-color: lawngreen;
    border-radius: 10px;
    width: 80px;
}
#return {
    background-color: red;
    padding: 10px;
    border-radius: 10px;
    width: 60px;
    text-align: center;
}
a:visited {
    color: white;
}
a:link {
    text-decoration: none;
    color: white;
}
#botoes {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 1024px) {
    html {
        height: 100vh;
        font-weight: normal;
        font-size: 25px;
        font-style: normal;
        background: none;
        background-color: whitesmoke;
    }

    #mensagem {
        padding: 10px;
        display: flex;
        align-items: center;
        align-content: center;
        height: 50vh;
        width: 40vh;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #nome {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }

    #nome input {
        width: 35vh;
        height: 2vh;
    }

    #info {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }

    #info input {
        width: 35vh;
        height: 2vh;
    }

    #serviço input {
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
        width: 35vh;
        height: 2vh;
    }

    #serviço1 {
        display: flex;
        flex-direction: column;
    }

    #serviço2 {
        display: flex;
        flex-direction: column;
    }

    label {
        font-size: 30px;
    }

    input[type=radio], input[type=checkbox]  {
        border: 0px;
        width: 20px;
        height: 25px;
        vertical-align: middle;
    }

    #tipo {
        display: flex;
        flex-direction: column;
    }

    #enviar {
        width: 90px;
    }
}