body {
    background-color: #ffd5ed;
}

.error {
    border: 3px red;
    outline: red;
    box-shadow: red;
}

#header {
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

#input {
    background-color: #f7f7f7a8;
    padding: 2% 25% 2% 15%;
    text-align: right;
    margin-left: 10%;
    margin-right: 10%;
    font-family: landa, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-display: auto;
}

#input label {
    font-size: 20px;
    padding-right: 5%;
    text-align: center;
    color: #000000;
    text-shadow: 0 0.64px 0.64px #ffffff;
}
#input input {
    font-size: 20px;
    padding: 2%;
    width: 70%;
    margin-bottom: 5%;
    color: #000000;
    font-family: landa, sans-serif;
    box-shadow: none;
}

#comments {
    font-size: 20px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background: url('pink.jpg');
    background-color: #1a1717c2;
    background-blend-mode: overlay;
    border:12px double pink;
    padding: 2%;
    height: 150px;
}

.submit {
    padding: 10px;
    font-size: 30px;
    font-family: "futura-pt";
    font-display:auto;
    font-style:normal;
    outline: none;
    text-align: center;
    text-decoration:none;
    background-color: #ffd5ed;
    border:3px solid #1A1A1D;
    border-radius: 10px;
    position: relative;
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.submit:hover {
    background-color: #ffffff;
    color: #1A1A1D;
}

.submit:after {
    content: "";
    background: #ffd5e9;
    opacity: 0;
    transition: all 0.8s;
}  

.submit:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s;
}

#output {
    background-color: #d1709da8;
    padding: 2% 25% 2% 15%;
    text-align: left;
    margin-left: 10%;
    margin-right: 10%;
    font-family: landa, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-display: auto;
    font-size: 20px;
}
