@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --Dark_Blue: hsl(234, 12%, 34%);
    --Grayish_Blue: hsl(229, 6%, 66%);
    --Light_Gray: hsl(0, 0%, 98%);
    --Cyan: hsl(180, 62%, 55%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--Light_Gray);
}

header {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #E6E6FA;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06),
                0 0 90px var(--Light_Gray),
                0 0 20px rgba(0, 255, 255, 0.4);
}

header h1 {
    font-size: 50px;
    font-family: "Poetsen One", sans-serif;
    font-weight: 100;
    font-style: normal;
    color: var(--Cyan);
    text-shadow: 0 0 5px darkblue;
}

header p {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.container {
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06),
                0 0 60px var(--Light_Gray),
                0 0 10px rgba(0, 255, 255, 0.4);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.container h2 {
    font-size: 28px;
    color: var(--Dark_Blue);
    margin-bottom: 20px;
}

.container p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--Dark_Blue);
    margin-bottom: 1.5em;
}

.form-group {
    margin-bottom: 1em;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: var(--Dark_Blue);
    margin-bottom: 0.5em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--Grayish_Blue);
    border-radius: 4px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background-color: var(--Cyan);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: hsl(180, 99%, 37%);

} 

footer {
    text-align: center;
    background-color: #F5F5DC;
    padding: 20px;
}

a {
    text-decoration: none;
}

a:hover {
    color: rgb(204, 33, 195);
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.navigation a {
    color: #007bff;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.navigation a i {
    margin-right: 8px;
    font-size: 22px;
}

.navigation a:hover {
    color: #0056b3;
}

.navigation a i:hover {
    color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 40px;
    }

    header p {
        font-size: 18px;
    }

    .container {
        padding: 15px;
    }

    .container p {
        font-size: 16px;
    }

    .telegram-link a {
        font-size: 18px;
    }
}
