* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

html {
    font-size: 62.5%;
    font-family: 'sans-serif';
    background: linear-gradient(115deg, rgba(58, 58, 158, 0.8), rgba(136, 136, 206, 0.7)), url(https://cdn.freecodecamp.org/testable-projects-fcc/images/survey-form-background.jpeg);
}

#move {
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.container {
    width: 100%;
    height: 100%;
    color: aliceblue;
}

.header {
    width: 50%;
    text-align: center;
    font-size: 2em;
    /* border: 2px solid black; */
    margin: 2rem auto;
}

.outer-box {
    font-size: 1.5em;
    font-weight: 800;
    width: 50%;
    border: 2px solid black;
    margin: 2rem auto;
    padding: 4rem;
    background-color: rgb(111, 111, 243);
}

.row {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

input {
    padding: .5rem;
    border-radius: 7px;
}

label {
    padding: 1rem 0rem;
}

.option {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.checkbox {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

textarea {
    height: 8rem;
}

button {
    background-color: green;
    margin: 1.5rem 0rem;
    padding: 1rem;
    border-radius: 8px;
    border: none;
}