* {
    margin: 0;
    padding: 0
}

body {
    margin: 0 auto;
    padding: 3% 0 0 0;
    background-color: #696AA4;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: 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);
}

h1,
p {
    padding-bottom: 20px;
}

.container {
    width: 40%;
    margin: 0 auto;
    text-align: center;
}

form {
    background-color: #252544;
    border-radius: 10px;
    font-size: 20px;
    padding: 10px;
}

label {
    display: block;
    margin: 16px 0 3px 0;
}

fieldset {
    text-align: left;
    padding: 0 5%;
    border: none;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
    width: 100%;
    height: 35px;
    border-radius: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

::placeholder {
    padding-left: 10px;
}

textarea {
    width: 100%;
}

.div-button {
    padding: 2% 0 5% 0;
}

input[type="submit"] {
    background-color: #37AF65;
    color: white;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    width: 90%;
    padding: 1.5%;
}

@media screen and (min-width: 360px) and (max-width:1000px) {
    body {
        width: 100%;
    }

    .container {
        width: 90%;
    }
}

@media screen and (min-width: 1001px) and (max-width:1366px) {
    body {
        width: 100%;
    }

    .container {
        width: 60%;
    }
}