@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap');

        .item {
            width: calc(100%/3);
            text-align: center;
        }

        .footer {
          position: fixed;
          left: 0;
          bottom: 0;
          width: 100%;
          background-color: white;
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          align-content: center;
          justify-content: space-between;
        }

        .form-name {
            color: #000000;
            font-size: 20px;
            font-family: 'Nunito';
            line-height: 1.55;
            font-weight: 700;
            background-position: center center;
            border-color: transparent;
            border-style: solid;
        }
        input {
            color: rgb(0, 0, 0);
            border: 1px solid rgb(84, 110, 122);
            background-color: rgb(255, 255, 255);
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            height: 48px;
            width: 100%;
        }
        label {
            display: block;
        }

        button {
            border: none;
            box-sizing: border-box;
            outline: 0;
            background: 0 0;
            margin-left: auto;
            margin-right: auto;
            padding: 0px 15px;
            display: block;
            width: 280px;
            font-weight: 700;
            height: 50px;
            color: #fff;
            background-color: #4caf50;
            border-radius: 8px;
            font-size: 16px;
            font-family: Nunito;
            cursor: pointer;
        }
        .div-form {
            border-radius: 20px;
            padding: 5%;
            margin: auto;
            width: auto;
            height: auto;
            box-sizing: border-box;
            display: table;
            background-color: #ffffff;
            background-position: center center;
            border-color: white;
            border-style: solid;
        }

        select {
            border-radius: 4px;
        }

        .center {
          width: auto;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }

        .background {
          margin: 0;
          background-image: url("https://thumb.tildacdn.com/tild3836-6264-4466-b136-396262326534/-/format/webp/homepage_cover.png");
          background-position: bottom;
          background-repeat: no-repeat;
          background-size: cover;
          height: 100vh;
          width: 100%;
          -webkit-filter: blur(20px);
          filter: blur(20px);
        }
        body{
            margin: 0;
        }
        * {
         font-family: Nunito;
        }

        img {
            width: 20%;
            position: absolute;
            top: 1%;
            left: 1%;
        }

        @media (max-width: 760px) {
            img {
            width: 50%;
            }
        }