* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 10px;
    background: #380058;
}

.titulo {
    position: absolute;
    margin-bottom: 14em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    border: none;
    font: normal 48px/normal "Warnes", Helvetica, sans-serif;
    color: rgba(255, 255, 255, 1);
    text-decoration: normal;
    text-align: center;
    -o-text-overflow: clip;
    text-overflow: clip;
    white-space: pre;
    text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 1), 0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}

.titulo:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 1), 0 0 40px #00ffff, 0 0 70px #00ffff, 0 0 80px #00ffff, 0 0 100px #00ffff;
}

.cuerpo {
    width: 445px;
    border-radius: 8px;
    background: #fff;
    padding: 30px 25px 40px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cuerpo :where(textarea, input, select, button) {
    width: 100%;
    outline: none;
    border: none;
    font-size: 18px;
    border-radius: 5px;
}

.cuerpo :where(textarea, input)::placeholder {
    color: #aaa;
}

.cuerpo :where(textarea, input):focus {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

.cuerpo textarea {
    height: 270px;
    resize: none;
    padding: 8px 13px;
    font-size: 18px;
    border: 1px solid #ccc;
}

.cuerpo .opciones-archivo {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: space-between;
}

.cuerpo .guardar-btn {
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    padding: 16px 0;
    margin-top: 20px;
    pointer-events: none;
    background: #7017b8;
}

.guardar-btn:hover {
    background: #431766;
}

textarea:valid~.guardar-btn {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.2s ease;
}

.opciones-archivo .opcion {
    width: calc(100% / 2 - 8px);
}

.opcion label {
    font-size: 18px;
}

.opcion :where(input, .selec-menu) {
    height: 50px;
    padding: 0 13px;
    margin-top: 6px;
    border-radius: 5px;
    border: 1px solid #bfbfbf;
}

.opcion .selec-menu select {
    height: 50px;
    background: none;
}

@media screen and (max-width: 656px) {
    .titulo {
        font: normal 36px/normal "Warnes", Helvetica, sans-serif;
        margin-bottom: 18em;
    }
}

@media screen and (max-width: 480px) {
    .cuerpo {
        padding: 25px 18px 30px;
    }

    .cuerpo :where(textarea, input, select, button, label) {
        font-size: 16px !important;
    }

    .cuerpo .guardar-btn {
        padding: 15px 0;
    }

    .opciones-archivo .opcion {
        width: calc(100% / 2 - 5px);
    }

    .opcion :where(input, .select-menu) {
        padding: 0 10px;
    }

    .titulo {
        font: normal 24px/normal "Warnes", Helvetica, sans-serif;
        margin-bottom: 24em;
    }
}