body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 182, 193, 0.473);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
        sans-serif;
}
.form-start {
    display: flex;
    flex-direction: column;
    width: 420px;
    margin: 30px;
    padding: 40px;
    background-color: white;
}
.btn {
    background-color: rgb(130, 204, 238);
    border: transparent;
    border-radius: 5px;
    padding: 10px;
    width: 90px;
    cursor: pointer;
}
.form-to-fill {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    background-color: white;
}
.title {
    margin-top: 10px;
}
input {
    width: 400px;
}
.comment {
    height: 150px;
}
.visual {
    display: flex;
}
.color-button {
    padding: 10px 40px;
    background-color: darksalmon;
    border-radius: 5px;
    border: transparent;
    cursor: pointer;
}

@media (max-width: 600px) {
    .form-start{
        width: 80%;
        margin: 30px 0px;
        padding:20px;
    }
    input {
        width: 100%;
    }
}
