/* Title */
.panel-title {
    padding-top: 70px;
    height: 80vh;
}
.panel-title .container {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    background-color: rgba(21,21,23,0.7);
}
.panel-title .container h2 {
    align-self: center;
    font-size: 3rem;
    text-align: center;
}
.panel-title .container p {
    text-align: center;
}
.panel-title .container .crate-buttons {
    display: flex;
}
.panel-title .container .crate-buttons .button {
    margin: 0.5rem;
}
@media (max-width: 767px) {
    .panel-title .container .crate-buttons {
        flex-direction: column;
    }
}


.panel-title .pulser {
    background: black;
    border-radius: 50%;
    margin: 30px 10px;
    height: 3.125rem;
    width: 3.125rem;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 0 0 0 rgba(11, 11, 11, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}
.panel-title .pulser img {
    height: 1.875rem;
}
@keyframes splashPulse {
    0% {
        font-size: 1rem;
    }
    50% {
        font-size: 1.25rem;
    }
    100% {
        font-size: 1rem;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(11, 11, 11, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px #111111;
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(11, 11, 11, 0);
    }
}
@media (max-width: 480px) {
    @keyframes splashPulse {
        0% {
            font-size: 0.5rem;
        }
        50% {
            font-size: 0.75rem;
        }
        100% {
            font-size: 0.5rem;
        }
    }
}

/* Slices */
#pageFundraising .crate-images {
    width: 35%;
    height: 90%;
    align-self: center;
    display: flex;
}
.panel-slices .crate-images {
    justify-content: left;
}
.panel-monster .crate-images {
    justify-content: right;
}

#pageFundraising .crate-images img {
    width: 80%;
    border-radius: 15px;
    border: #171717 3px solid;
}
#pageFundraising .crate-text {
    width: 60%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.panel-slices .crate-text {
    text-align: right;
    align-items: end;
}
.panel-slices .crate-text h2 {
    align-self: end;
}
@media (max-width: 767px) {
    #pageFundraising .crate-text {
        width: 100%;
        text-align: start;
    }
    .panel-slices .crate-text h2 {
        align-self: start;
    }
    #pageFundraising .crate-text .button {
        align-self: center;
    }
    #pageFundraising .crate-images {
        justify-content: space-between;
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 85%;
        height: auto;
        margin-bottom: 1rem;
        order: -1;
    }
}
