body {
    background: #18013b;
    margin: 0;
    padding: 0;
}

.page {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/inner-bg.jpg") center top no-repeat;
    background-size: cover;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    z-index: -1;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}