/* static/css/main.css */

html, body {
    height: auto;
    overflow-y: auto;
}


.content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
	    min-height: 100vh;
    padding-bottom: 20px; /* Добавляем небольшой отступ внизу для удобства прокрутки */
	
}

.content h1 {
    font-size: 3rem;
    margin: 0;
}

.content p {
    font-size: 1.5rem;
}

a[href="/auth/steam/login"] {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #1b2838;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
}

a[href="/auth/steam/login"]:hover {
    background-color: #2a475e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    a[href="/auth/steam/login"] {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
