﻿html,
body {
    height: 100vh
}

.bg{
    background-image: url('../images/bg.jpg');
    background-size: cover;
    height: 100vh

}
.bg .content{
    width: 550px;
    height: 450px;
    position: relative;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-30%);
}
.bg .content .logo{
    width: 250px;
    height: 200px;
    margin: auto;
    border-radius: 55% 54% 100% 0% / 50% 54% 0% 41%;
    background-color: rgba(255, 255, 255, .9);
    background-image: url('../images/logo.png');
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
}

.bg .content .text{
    width: 550px;
    height: 180px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, .9);
    background-image: url('../images/text.png');
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat;
}

.bg .socials{
    width: 100%;
    height: 50px;
    background-color: rgba(255,255, 255, .8);
    position: fixed;
    bottom: 40px;
    padding-right: 2rem;
}

.bg .socials ul{
    width: 200px;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin: auto;
    list-style: none;
    margin-top: .5rem;
}
.bg .socials ul li{
    width: 36px;
    height: 36px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
}