body {
    font-family: 'Optima','FF Beowolf', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-align: center;
    background-color: #000;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

main {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

h1 {
    margin-bottom:5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

p {
    max-width: 300px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
} 