		body {
            background-color: #121212;
            color: silver;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            height: 100vh;
            margin: 0;
            font-family: Arial, sans-serif;
        }
        h1 {
            color: white;
            text-align: center;
            margin-top: 50px;
            margin-bottom: 75px;
        }
        .input-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
			
        }
        input, select {
            padding: 8px;
            font-size: 15px;
            width: 70px;
            text-align: center;
            background-color: #2d2d30;
            color: #da0000;
        }
        button {
            margin-top: 10px;
			margin-bottom: 30px;
            padding: 10px 20px;
            font-size: 16px;
            background-color: #1565c0;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }
        button:hover {
            background-color: #1976d2;
        }
        #resultado {
            color: #52be80;
            font-size: 23px;
            text-align: center;
            margin-top: 20px;
        }
        .logo, .logo2 {
            position: absolute;
            width: 290px;
            height: auto;
            z-index: -1;
        }
        .logo {
            top: 150px;
            right: 60px;
        }
        .logo2 {
            top: 150px;
            left: 60px;
        }
        footer {
            background-color: #121212;
            color: silver;
            text-align: center;
            padding: 10px;
            border-top: 2px solid #1565c0;
            position: fixed;
            bottom: 0;
            width: 100%;
            box-sizing: border-box;
        }
        @media (max-width: 600px) {
            h2 {
                font-size: 17px;
				margin-top: 10px;
				margin-bottom: 25px;
            }
            input, button {
                font-size: 11px;
                width: 40px;
                padding: 9px;
            }
            button {
                width: 90px;
            }
            .logo, .logo2 {
                width: 120px;
                top: 320px;
				z-index: -1;
            }
            .logo {
                right: 10px;
            }
            .logo2 {
                left: 10px;
            }
            #resultado {
                font-size: 17px;
            }
            .mi-footer {
                font-size: 7px;
                padding: 2px;
            }
        }