body{
    font-family: 'Comfortaa', cursive;
}

main{
    background: #000;
    height: 100vh;
}

main{
    position: relative;
}

img{
    width: 120%;
    position: relative;
}

.center-v-h{
    display: flex;
    justify-content: center;
    align-items: center;
}

main h1{
    padding-top: 60px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 4px;
    font-size: 45px;
    margin-bottom: 10px;
}

main h1 span{
    color: #e30613;
}

.contact-info{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.contact-info li{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 30px;
}

.contact-info li i{
    margin-right: 20px;
    display: inline-block;
}

p{
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    line-height: 35px;
}

.social-icons{
    text-align: left;
    padding-left: 30px;
}

.social-icons a{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    color: #fff;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}

.social-icons a.facebook{
    background: #3b5998;
}

.social-icons a.instagram{
    background: #e12f67;
}

hr{
    height: 2px;
    background: #e30613;
    margin: 25px 0;
}

@media(max-width: 767px){
    main{
        height: 100%;
    }

    img{
        width: 100%;
        padding-bottom: 50px;
    }
}

@media(max-width: 479px){
    main h1{
        font-size: 30px;
    }
}