@import url('../media/fontawesome-free-6.4.2-web/css/all.css');

.splash-screen {
    background: #000;
    z-index: -1000;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0%;

    animation: 0.4s ease-out 0s 1 bodyOpacity;
}
.samplepacks {
    width: 100%;
    display: flex;
    overflow-x: hidden;
}
.pack {
    padding: 0 5% 0 5%;
    max-width: 100%;
    background: #1f091d;
    min-height: 100vh;
    display: flex;
    justify-items: space-between;
    align-items: center;
}
.pack .text-division {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-basis: 50%;
    height: fit-content;
    overflow: hidden;
}
.pack .text-division h1 {
    font-size: 56px;
    color: white;
    text-transform: uppercase;
    background: #1f091d;
    z-index: 10;
    animation: 1.2s ease-out 0s 1 transitionBottom;
}
.pack-presentation p.pack-desc {
    color: #b64ead;
    z-index: 1;
    animation: 1.6s ease-out 0s normal forwards 1 transitionRight;
}
.pack-presentation {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pack-presentation h2 {
    margin-top: 24px;
    animation: 2.8s ease-out 0s normal forwards 1 opacityBlend;
}
.pack-presentation ul {
    list-style: none;
    animation: 2.8s ease-out 0s normal forwards 1 opacityBlend;
}
.pack-presentation ul li {
    color: #b64ead;
    line-height: 130%;
}
.pack-included-text, .reqiured-software {
    color: #ffa6f8;
    margin-top: 16px;
    font-size: 20px;
    font-weight: bold;
    animation: 2.8s ease-out 0s normal forwards 1 opacityBlend;
}

.graphics-division {
    flex-basis: 50%;
    width: 100%;
    display: flex;
    justify-content: end;
}
.graphics-division .image {
    height: 80vh;
    animation: 2.0s ease-in-out 0s 1 transitionLeft;
    flex-basis: 50%;
}
.download-tools {
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    animation: 3.6s ease-in-out 0s 1 transitionTop;
}
.download-button {
    padding: 14px 36px;
    font-size: 14px;
    background: #54FEB7;
    color: black;
    border: 0;
    width: 300px;
    font-weight: bold;
    transition: 0.3s;
}
.download-button:hover {
    background: white;
    transition: 0.3s;
}
.filesizetext {
    color: #803a7a;
}

@media screen and (max-width: 975px) {
    body {
        overflow-x: hidden;
    }
    .graphics-division {
        margin-top: 60px;
        flex-basis: 100%;
        justify-content: center;
        max-width: 98vw;
    }
    .graphics-division .image {
        height: 80vh;
        width: 90%;
        flex-basis: 100%;
    }
    .pack {
        flex-direction: column-reverse;
        min-height: 100vh;
        max-width: 100%;
        padding: 0;
    }
    .pack .text-division {
        margin-top: 60px;
        flex-basis: 100%;
        overflow: hidden;
        width: 90%;
    }

    .pack .text-division h1 {
        font-size: 28px;
    }
    .footer {
        margin-top: 0px;
    }
}
@media screen and (max-width: 500px) {
    .filesizetext {
        display: none;
    }
    .download-button {
        display: none;
    }
}