body {
            background-color: milk;
            font-family: Arial, sans-serif;
        }

        .loading {
            display: flex;
            justify-content: center;
            align-items: center; 
            height: 100vh;
            font-size: 24px;
            color: brown;
        }

        .loading::before {
            content: "";
            width: 50px;
            height: 50px;
			margin-right: 15px;
            border: 5px solid brown;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .content {
            display: none;
            text-align: center;
            padding: 50px;
            color: brown;
        }

        .content img {
            max-width: 200px;
            margin-bottom: 20px;
        }

        .instruction-list {
            text-align: center;
            margin-bottom: 20px;
            list-style-type: none;
            padding: 0;
        }

        .instruction-list li {
            margin-bottom: 10px;
            counter-increment: step-counter;
            position: relative;
        }

        .instruction-list li::before {
            content: counter(step-counter);
            background-color: brown;
            color: #fdfff5;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: inline-block;
            text-align: center;
            line-height: 20px;
            margin-right: 10px;
        }

        .styled-button {
            background-color: brown;
            color: #fdfff5;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
        }

        .styled-button:hover {
            background-color: #80461B;
        }