body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arimo', sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600508774634-4e11d34730e2?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1;
    flex-grow: 1;
}

.logo-box {
    background-color: #ffffff; 
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box img {
    max-width: 250px;
    height: auto;
    display: block;
}

h1 {
    font-size: 1.4em;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
    font-size: 0.7em;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}