/* Global settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    /*background-color: #f5f5f5;*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("background.jpg");
    background-size: contain;
    /*background-repeat: no-repeat;*/
    background-size: cover;
    backdrop-filter: blur(5px);
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content {
    max-width: 700px;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

.text {
    font-size: 18px;
    color: #333;
}

.link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}
