body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    background-image: url('images/lightning_background.jpg');

}
.container {
    text-align: center;
    margin-top: 20vh;
}
img {
    max-width: 300px;
    height: auto;
}
h1 {
    font-weight: 700;
    font-size: 2em;
    color: #333;
}
p {
    font-weight: 300;
    color: #666;
    font-size: 1.2em;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 20px;
    display: flex;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
}
