/* style.css */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #1a8cff, #004d99);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.profile {
    margin-bottom: 20px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 10px;
}

h1 {
    font-size: 22px;
    margin: 0;
}

.links .button {
    display: flex;
    align-items: center;
    background-color: white;
    color: #004d99;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px auto;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.links .button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.links .button:hover {
    background-color: #004d99;
    color: white;
}

footer {
    margin-top: 20px;
}

.join-button {
    background-color: white;
    color: #004d99;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.join-button:hover {
    background-color: #004d99;
    color: white;
}

.cookie-preferences {
    font-size: 12px;
    color: #d9d9d9;
    margin-top: 10px;
}
