/* Base */
*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    background-color: lightyellow;
    font-family: 'Inter', regular, monospace;
     font-size: 20px;
      font-weight: 400;
      margin: 0;
    }

h1, p {
    margin-top: 0;
}

/* Main */
    .container {
      width: 100%;
      margin: 0 auto;
    }
    
    .title {
      color: midnightblue;
      font-family: 'Inter', bolt, monospace;
      font-size: 34px;
      font-weight: 700;
      text-align: center;
    }
    
    .description {
      text-decoration: underline;
      text-align: center;
    }

    .image {
background-image: url(image/workplace.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: 100% auto;
    }
    
    .survey-form {
      width: 500px;
      margin: 20px auto;
      padding: 10px;
      border: 2px solid midnightblue;
      border-radius: 8px;
      background-color: gray;
      color: white;
    }
    
    .forn-field {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 10px;
    }

    .text {
      margin-bottom: 0;
    }

    .form-button {
        background-color: gold;
        width: 200px;
    height: 58px;
    margin: 0 auto;
    border-radius: 8px;
    font-size: 18px;
    }

@media screen and (max-width: 767px) {
      body {
    background: linear-gradient(17deg, #2e2e2e, #7a7a7a, #d4d4d4);}
   
    .survey-form {
        width: 90%;
        height: auto;
    }
    }
    
