.bg-area{
    width: 100%;
    height: 100%;
    background-image: url('./assets/bg-armifera.png');
    background-size: cover;
    position: absolute;
}
.logo{
    width: 150px;
    margin-bottom: 2rem;
    fill: white;
    opacity: .8;
}

.info-area{
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    color: white;
}

.info-wrap{
    display: table-cell;
    vertical-align: middle;
}

.social-icons{
    list-style: none;
  
}

.social-icons > li{
    display: inline;
    margin-right: 1rem;
}

.social-icons svg{
    max-width: 40px;
    fill: white;
}

.social-icons a{
    position: relative;
    transition: all ease-in-out .2s;
    top: 0;
}

.social-icons a:hover{
    top: -.2rem;
}

@media only screen 
   and (min-width : 320px) {
    .bg-area{
        background-position: -50%;
    }
}