/* Full-screen background */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden; /* removes scroll bar */
    background: url('my-image.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Georgia, serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
	padding-top: 150px;
;
}

/* White content box */
.content-box {
    background: rgba(255, 255, 255, 0.92);
    width: min(90%, 225px); /* responsive */
    padding: 30px;
    border-radius: 18px;
    text-align: center;
}

/* Headings */
h1 {
    margin-top: 0;
    font-size: 2rem;
    color: #222;
}

/* Navigation links */
nav a {
    display: inline-block;
    margin: 10px;
    color: #55555;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}
