@charset "UTF-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body { 
    height: 100%; 
    margin: 0;
    padding: 0;
}

body {
    font-family: Montserrat, sans-serif;
    font-size: 0.85em;
    line-height: 1.4em;
    color: #73b8e6;
    background: #231f20;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden; /* Voorkom horizontale scrollbalken */
}

p {
    text-align: center;
    font-size: 1.8em;
    line-height: 1.2em;
}

h1 {
    font-size: 4em;
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: center;
}

.login-button {
    position: absolute;
    top: 10px;
    right: 10px;
}

.login-button a {
    display: inline-block;
    padding: 12px 24px; /* Iets grotere padding voor betere zichtbaarheid */
    font-size: 16px; /* Standaard tekstgrootte */
    background-color: #73b8e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.login-button a:hover {
    background-color: #0056b3;
}

.centered {
    text-align: center;
    margin: 20px auto;
    padding: 0 10px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 600px) {
    .login-button {
        top: 10px; /* iets meer ruimte bovenaan */
        right: 10px; /* iets meer ruimte aan de rechterkant */
    }

    .login-button a {
        padding: 15px 30px; /* Vergrote padding voor betere klikbaarheid */
        font-size: 18px; /* Grotere tekstgrootte op kleinere schermen */
    }
    
    .centered {
        margin: 10px auto;
        padding: 0 5px;
    }

    h1 {
        font-size: 2.5em;
        margin-top: 30px;
        margin-bottom: 10px;
    }
}
