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

body {
    background-image: url("https://res.cloudinary.com/solomonkamanga/image/upload/v1534339607/survey-form/star-wars-background.jpg");
    background-repeat: no-repeat;
    background-color: #000000;
    font-family: Work Sans, sans-serif;
    font-size: 12px;
    color: #333333;
}

#logo-container {
    height: 150px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

#star-wars-logo {
    max-width: 100%;
    display: block;
    height: auto;
}

#title {
    text-align: center;
    font-size: 45px;
    font-weight: 900;
    color: #ffe81f;
}

#description {
    text-align: center;
    font-size: 20px;
    color: #ffe81f;
}

.container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#survey-form {
    background: #f2f2f2;
    padding: 25px;
    margin: 20px 0;
    border-radius: 4px;
}

.survey-question {
    font-weight: bold;
}

input[type=text], input[type=email], input[type=number], select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ffe81f;
    border-radius: 5px;
    box-sizing: border-box;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

#submit {
    background-color: #ffe81f;
    color: #000000;
    padding: 12px 20px;
    width: 100%;
    margin-top: 20px; 
    border: none;
    border-radius: 4px;
    cursor: right;
    font-family: Work Sans, sans-serif;
    font-size: 25px;
    font-weight: bold;
}

#submit:hover {
    background-color: #000000;
    color: #ffe81f;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 5px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

#favorite-line {
    height: 200px;
}

#catch-phrase {
    text-align: center;
    font-size: 20px;
    color: #ffe81f;
    margin-bottom: 15px;
}

/*
* Media Queries
*/
@media screen and (max-width: 600px) {
    .col-25, .col-75 {
      width: 100%;
      margin-top: 0;
    }
  }