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

body {
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Libre Baskerville', serif;
    color: white;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-weight: 400;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.4;
    width: 50%;
    margin: auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
}