@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

.container {
            max-width: 600px;
            width: 100%;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
        }
        .form-group input {
            width: calc(100% - 22px);
            padding: 10px;
            border: none;
            border-radius: 5px;
            background-color: #0d0d0d;
            color: #fff;
            font-family: 'Roboto Mono', monospace;
        }
         .main-button {
            padding: 10px 15px;
            background-color: #0d0d0d;
            border: none;
            border-radius: 5px;
            color: #fff;
            font-family: 'Roboto Mono', monospace;
            cursor: pointer;
            transition: 0.3s ease-in-out;
        }
        .main-button:hover {
            background-color: #ccc;
        }
        .info {
            text-align: center;
            margin-bottom: 20px;
        }

            select {
                background-color: #0d0d0d;
                font-family: 'Roboto Mono', monospace;       
                color: #fff;;
                width: 50%;
                max-width: 200px;
                padding-top: 5px;
                font-size: 20px;
                padding-bottom: 5px;
                border: none;;
                margin: 2px;
                border-radius: 5px;
                padding-left: 10px; 
                padding-right: 10px;
                }

.button {
            color: #fff;
            transition: color 0.3s ease-in-out;
        }
        .button:hover {
            color: #ccc;
        }
