html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
}

img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    opacity: .5;
}

h2 {
    font-family: 'Arial', sans-serif;
    font-style: italic;
    font-size: 40px;
    color: white;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}