body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #111; /* Dark background */
    line-height: 1.6;
    display: flex;
    align-items: flex-start; /* Align items to the top */
    min-height: 100vh;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%), url(1.jpg);
}

h1 {
    font-size: 30px;
}

h1 a {
    text-decoration: none;
    color: black;
}

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

div {
    position: absolute; /* Use absolute positioning */
    top: 50%; /* Position from the top */
    left: 50%; /* Position from the left */
    transform: translate(-50%, -50%); /* Center the div */
    text-align: center; /* Center text inside the div */
}