* {
    background-color: black;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    position: relative;
}

p {
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
    position: absolute;
    top: 20%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

img {
    height: 100vh;
    object-fit: cover;
    display: block;
}