/* style.css */

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

body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.container {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px #000;
}

p {
    font-size: 24px;
    text-shadow: 1px 1px 3px #000;
}
