@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
}

.content img {
    display: block;
    width: 10%;
}

.content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: url(img/Background-Img.jpg) no-repeat center center/cover;
    position: relative;
}

.content::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    background: rgba(0,0,0,0.6);
}

.content * {
    z-index: 1;
}

.content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin: 40px 0 20px 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.6;
}

.content .social-icons a {
    color: #fff;
    padding: 0 15px;
    font-size: 20px;
}

.content .social-icons a:hover {
    color: orangered;
    transition: .3s;
}



/* Responsivness Style */
@media(max-width: 768px) {
    .content img {        
        width: 15%;
    }
}

@media(max-width: 425px) {
    .content img {        
        width: 25%;
    }
    .content h1 {
        font-size: 22px;
    }
}

@media(max-width: 375px) {
    .content img {        
        width: 30%;
    }
}

@media(max-width: 325px) {
    .content img {        
        width: 35%;
    }
}