body {
    height: 100vh;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    font-weight: 700;
}

.header {
    margin-bottom: 30px;
}

.footer {
    margin-top: 40px;
    font-size: 14px;
    color: #6c757d;
}

.button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px auto;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

.icon {
    max-width: 100px;
    margin-bottom: 40px;
}


/*@media (max-width: 768px) {*/
/*    .icon {*/
/*        max-width: 150px;*/
/*    }*/
/*}*/
