        body {
            background-image: url("../img/background.jpg");
            background-repeat: no-repeat;
            background-size: cover;
            height: 100vh;
            text-align: center;
            font-family: Arial, sans-serif;
        }
        .center {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 15vh;
        }
        img {
            max-width: 80%;
            max-height: 80%;
        }

        h1 {
            color: #333;
        }

        form {
            display: inline-block;
            text-align: left;
            border: 1px solid #ccc;
            padding: 20px;
            
            border-radius: 5px;
        }

        label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
        }

        select {
            width: 200px;
            padding: 5px;
            border-radius: 3px;
        }

        input[type="submit"] {
            padding: 10px 20px;
            background-color: #4CAF50;
            color: #fff;
            border: none;
            cursor: pointer;
        }

        textarea {
            width: 80%;
            padding: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
            resize: vertical;
            height: 9vh;
            line-height: 1;
        }

        

        @media only screen and (max-width: 600px) {
            form {
            display: inline-block;
            text-align: left;
            border: 1px solid #ccc;
            padding: 20px;
            width: 90%;
            border-radius: 5px;
        }

        textarea {
            width: 80%;
            padding: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
            resize: vertical;
            height: 9vh;
            line-height: 1;
        }


        }
