:root {
    --cover-width: 42vw;
    --main-color: #678CD0;
}
body {
    margin: 0;
    background: linear-gradient(var(--main-color) 50%, #000);
}
#splash-wrapper {
    background-image: url('/images/splash/bg_new.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#splash {
    display: flex;
    justify-content: space-between;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: white;
    font-family: "ivymode", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
}
@media only screen and (min-width: 992px) {
    #splash {
        width: 956px;
    }
    .btn {
        width: 200px;
        height: 60px;
        font-size: 20px;
    }
}
@media only screen and (min-width: 1300px) {
    #splash {
        width: 1200px;
    }
    .btn {
        width: 255px;
        height: 70px;
        font-size: 26px;
    }
}
@media only screen and (min-width: 1700px) {
    #splash {
        width: 1690px;
    }
    .btn {
        width: 355px;
        height: 92px;
        font-size: 29px;
    }
}
#cover {
    background-image: url('/images/splash/AlbumCover.png');
    background-size: cover;
    background-position: center;
    width: var(--cover-width);
    height: var(--cover-width);
}
#buttons {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: var(--cover-width);
    height: var(--cover-width);
}
@media only screen and (max-width: 991px) {
    #splash-wrapper {
        background-image: url('/images/splash/bg_new_mobile.jpg');
        background-size: cover;
    }
    #splash {
        flex-direction: column;
        gap: 4.5rem;
        padding: 122.5px;
    }
    :root {
        --cover-width: calc(100vw - 245px);
    }
    #cover {
        order: 1;
    }
    #buttons {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        gap: 1.25rem;
        height: 820px;
    }
    .btn {
        font-size: 29px;
        width: 100%;
        height: 92px;
    }
}