/* from colour mixing */
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            margin: 0;
            padding: 20px;
            background-color: rgb(253, 253, 253);
        }
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .content {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 400px;
        }
        .image {
            width: 100%;
            max-width: 200px;
            border-radius: 8px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
        }
        .text {
            margin-top: 10px;
            font-size: 18px;
        }
        .buttons {
            display: flex;
            justify-content: space-between;
            width: 100%;
            gap: 10px;
            max-width: 400px;
            margin-top: 20px;
        }
        button {
            flex: 1;
            padding: 10px;
            gap: 10px;
            margin: 0 5px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            background-color: #007BFF;
            color: white;
           /* border-radius: 5px;*/
    
            
        }
        .buttons a {
            padding: 10px 20px;
           justify-content: space-between;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
           border-radius: 5px;
            transition: background 0.3s;
        }
        button:hover {
            background-color: #0056b3;
        }
        input[type="submit"] {
            background-color: #007BFF;;
            color: white;
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
        }

        input[type="submit"]:hover {
            background-color: darkblue;
        }
        @media (min-width: 600px) {
            .content {
                flex-direction: row;
                align-items: center;
            }
            .text {
                margin-left: 20px;
            }
        }
