*{
    margin: 0;
    padding: 0;
}

html,body{
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: url('../images/bg.jpg') no-repeat center center;
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 0 10px;
    color:#000;
    margin: auto;
}

.content h1{
    width: 100%;
    margin-bottom: 30px;
}

.content h2{
    margin: 0 0 15px;
    font-size: 30px;
    font-weight: normal;
}

.content p{
    font-size: 20px;
    margin: 15px 0 0;
    /* font-weight: bold; */
}

.content p a{
    color:#000;
    text-decoration: none;
}


img{
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

@media screen and (max-width: 600px) {
    .content h1 img {
        max-width: 100%;
        object-fit: cover;
    }
}