/* === Global styles === */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background-color: grey;
    background: url("assets/background.png") repeat center center fixed;
    background-color: rgba(255, 255, 255, 0.4);
    background-blend-mode: lighten;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: black;
    padding: 30px 20px;
    border-radius: 16px;
    max-width: 300px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 100px;
    height: auto;
    /* border-radius: 50%; */
    margin-bottom: 20px;
}

.links a {
    display: block;
    margin: 10px 0;
    padding: 14px;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.links a i {
    margin-right: 10px;
}

.links a:hover {
    background-color: #005fd1;
}
