body {
    background-color: #1a1a1a;
    color: white;
    font-family: Arial, sans-serif;
}

button {
    background-color: #1a1a1a;
    color: white;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}


.header {
    background-color: #594881;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.header-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-text {
    display: inline-block;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.header h2 {
    margin: 0;
    font-size: 1.5em;
}

.content {
    padding: 20px;
}

.random-gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.random-gif {
    position: relative;
    overflow: hidden;
    width: 800px;
    height: 300px;
}

.animation-container {
    width: 800px;
    height: 100%;
}

.gif-img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.loader-img {
    width: 400px;
    height: auto;
}

.animated {
    animation: move-left 1.5s forwards;
}

@keyframes move-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-800px);
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 40px;
}

.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shirt-img {
    width: 100px;
    height: auto;
    opacity: 0;
    transition: transform 0.2s ease-in-out, opacity 0.5s ease-in-out;
}

@keyframes pop-up {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    80% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.grid-item:nth-child(1) .shirt-img {
    animation: pop-up 0.5s forwards;
    animation-delay: 0.25s;
}

.grid-item:nth-child(2) .shirt-img {
    animation: pop-up 0.5s forwards;
    animation-delay: 0.5s;
}

.grid-item:nth-child(3) .shirt-img {
    animation: pop-up 0.5s forwards;
    animation-delay: 0.75s;
}

.grid-item:nth-child(4) .shirt-img {
    animation: pop-up 0.5s forwards;
    animation-delay: 1s;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    gap: 10px;
}

.responsive-image {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.custom-progress-bar1 {
    background-color: #00dba5 !important;
}

.custom-progress-bar2 {
    background-color: #3e61d9 !important;
}

.custom-progress-bar3 {
    background-color: #9289fc !important;
}

.custom-progress-bar4 {
    background-color: #fb92d4 !important;
}