body{
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

h1{
    font-size: 60px;
    color: white;
    margin: 0;
}

p{
    font-size: 20px;
    color: white;
    margin: 0;
    margin-top: 10px;
}

.contact-desc{
    font-size: 16px;
    margin-top: 20px;
}

.logo{
    position: relative;
    width: 100px;
    height: 100px;
    background: url('./logo.jpg');
    background-size: contain;
    z-index: 2;
    /* top: 50px;
    left: 100px; */
}

.content{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: url('./background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.content:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
}

.head-container{
    position: relative;
    text-align: center;
    margin: 50px 30px;
    z-index: 1;
}

@media screen and (max-width: 970px){
    h1{
        font-size: 40px;
    }
    .contact-desc{
        font-size: 14px;
    }
    p{
        font-size: 16px;
    }
}

