body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black; /* Fallback background color */
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
}

.bg .shade {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 15%, rgba(0,0,0,0.8) 70%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 15%, rgba(0,0,0,0.8) 70%);
    background: linear-gradient(180deg, rgba(255,255,255,0) 15%, rgba(0,0,0,0.8) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
}

.bg .logo {
    width: 50%;
    max-width: 500px;
    position: absolute;
    bottom: 100px;
}

.footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}

.ig {
    background-image: url('assets/social-ig.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin: 0 auto;
}

.ig div {
    width: 100%;
    height: 100%;
}
