body {
    width: 100%;
    height: 100vh;
    background: rgb(42,41,62);
    background: linear-gradient(90deg, #2a293e 0%, rgba(21,21,32,1) 48%, rgba(98,101,102,1) 100%);
    font-family: 'Khand', sans-serif;
    font-size: 700;
    color: white;
    display: flex;
    background-size: 140%;
    justify-content: space-around;
    position: relative;
}

.backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/construction.png");
    background-size: 60%;
    background-position: center;
    z-index: 1;
    background-repeat: no-repeat;
    opacity: 0.01;
}

.logo-wrapper {
    align-self: center;
    width: 700px;
    text-align: center;
    position: relative;
    z-index: 4;
}

.logo {
    transform: translate(-60px);
    padding: 0 30px;
}

p {
    margin-top: 10px;
    margin-bottom: 5px;
}

.text-tag {
    font-size: 50px;
}

.text-tag-2 {
    font-size: 38px;
    opacity: 0.6;
}

.logo-img {
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .logo {
        transform: translate(0px);
    }
    .logo-wrapper {
        padding: 20px;
    }
}