body {
    font-family: antonio;
}

.banner {
    margin-top: -6%;
    margin-bottom: -1%;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.list {
    margin-top: -6.5%;
    margin-bottom: -1%;
}

.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

@keyframes bounce-x {
    0%,
    100% {
        transform: translateX(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.animate-bounce-x {
    animation: bounce-x 1s infinite;
}

.frame-border {
    border: 15px solid transparent;
    border-image-slice: 10;
    border-image-source: url("../pictures/landingpage/border.png");
}

/* Alert Style */
.modal {
    @apply block;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

/* Modal content */
.modal-content {
    background-color: #000000;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ED2027;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
}

/* Close button */
.close {
    color: #ED2027;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
