body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}
.content{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media (max-width: 768px) {
    h1{
        position: relative;
        margin-top: -90% !important;
        font-size: 60px !important;
    }
}

h1{
    color: rgb(94, 150, 223);
    position: relative;
    margin-top: -20%;
    font-family: "Style Script", cursive;
    font-weight: 900;
    font-style: italic;
    font-size: 90px;
    margin-bottom: 0;
}
p{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.bg{
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 445px;
    background: url(city.png);
    background-size: 1344px;
    background-repeat: repeat-x;
    animation: animateBg 60s linear infinite;
}

@keyframes animateBg {
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1344px;
    }
}