body {
    margin:0;
    padding:0;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    font-family: sans-serif, Arial, Helvetica;
    color:white;
    word-break: break-word;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #232323cf;
    padding:0 1rem;
}
p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 1rem;
    line-height:1.3;
    font-weight:300;
}
strong {
    font-weight: 800;
}
.contact {
    display:flex;
    max-width: 500px;
    margin-top:1rem;
}
a {
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}
a:hover {
    opacity:0.9;
}
@media screen and (max-width: 650px) {
    h1, p {
        text-align:left;
        width:100%;
        max-width: 500px;
    }
}