body{
    margin: 0px;
    background: url(img/bg.JPG) no-repeat center center fixed; 
    background-size: cover;
}

.logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
    max-width: 900px;
    padding-top: 300px;
}

.socials{
    width: 100%;
    height: 25%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.social{
    min-width: 620px;
    height: 105px;
    padding: 10px;
    position:relative;
    display:inline;
    transition: .5s;
}

.social-logo{
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social:hover{
    transform: scale(1.1);
}

.credits{
    bottom: 0px;
    right: 5px;
    color: #fff;
    position: fixed;
}

.text-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
}

p{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding: 25px;
    background-color: #fff;
    border-radius: 30px;
    width: 25%;
}

@media only screen and (max-width: 991px){
   
    .logo{
        width: 100%
    }

    .social{
        transform: scale(1);
        width: 70%;
        padding-bottom: 100px;
    }

    p{
        width: 50%;
    }

   }