/* Reset some default styles for cross-browser consistency */
body, h1, p, select, button {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0; /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    padding: 20px;
    background-color: #fff; /* White background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.thumbnail {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: #000000; /* Blue text color */
}

p {
    color: #333; /* Dark gray text color */
    margin-bottom: 20px;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 5px;
    background-color: #fff; /* White background */
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #000000; /* Blue button background */
    color: #fff; /* White text color */
    cursor: pointer;
    margin-bottom: 10px;
}

button:hover {
    background-color: #00000080; /* Darker blue on hover */
}

/* Media queries for responsive design */

@media (max-width: 768px) {
    /* Adjust styles for smaller screens (e.g., mobile devices) */
    .container {
        padding: 10px;
    }

    select, button {
        font-size: 16px;
    }
}

/* Additional mobile-specific styles */

@media (max-width: 480px) {
    /* Styles for smaller screens (e.g., smartphones) */
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    select, button {
        font-size: 14px;
    }
}


.telegram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.telegram-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
    }
}

.telegram-icon svg {
    fill: #fff;
    width: 30px;
    height: 30px;
}


    