#portfolio {
    margin-top: 100px;
}

#portfolio > h1 {
    font-size: 60px;
}

#site-container {
    min-height: 100vh;
    margin-bottom: 150px;
}

.row > div {
    border-radius: 10px;
}

.pqcms-site, .website-card
{
    height: 100%;
}

.website-card {
    border: 2px solid blue;
    border-radius: 10px;
    font-size: 20px;
    background-color: rgba(255,255,255,1);
    transition: .3s;
    display: flex;
    flex-direction: column;
}

.website-card:hover {
    transition: .3s;
    transform: scale(1.04);
    background-color: rgba(255,255,255,1);
}

.website-card > a:hover {
    color: #0000d5;
}

.website-card > header {
    font-size: 30px;
    font-weight: bold;
}

.pqcms-site {
    border-radius: 10px;
    --angle: 0deg;
    border: 4px solid;
    border-image: conic-gradient(from var(--angle), red, yellow, lime, aqua, blue, magenta, red) 1 fill;
    animation: 10s rotate linear infinite;
}

.pqcms-rounded {
    border-radius: 10px;
    overflow: hidden;
}

@keyframes rotate {
    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/*.gradient-text {*/
/*    -webkit-text-fill-color: transparent;*/
/*    animation: 5s ease-in-out 0s infinite normal none running ggbzgJ;*/
/*    !*background: linear-gradient(263.37deg, rgb(252, 204, 81) 0.21%, rgb(253, 110, 64) 52.03%, rgb(231, 91, 149) 103.85%) 0% 0% / 150% text;*!*/
/*    font-size: 40px;*/
/*    background: linear-gradient(-60deg, blue 10%, lime 25%, yellow 45%, orange 60%, red 80%, purple 150%) 0 0 / 150% text;*/
/*    !*#FCCC51 0.21%, #FD6E40 52.03%, #E75B95 103.85%) 0% 0% / 150% text;*!*/
/*    font-weight: bold;*/
/*}*/

/*@keyframes ggbzgJ {*/
/*    0% {*/
/*        background-position: 0px 50%;*/
/*    }*/
/*    50% {*/
/*        background-position: 100% 50%;*/
/*    }*/
/*    100% {*/
/*        background-position: 0px 50%;*/
/*    }*/
/*}*/
.gradient-text {
    /*background: linear-gradient(-60deg, blue 0%, lime 12.5%, yellow 40%, orange 50%,*/
    /*red 60%, pink, purple 80%, blue 100%);*/
    background: linear-gradient(-70deg, #FCCC51 0%, #FD6E40 33%, #E75B95 66%, #FCCC51 100%) 0% 0% / 150% text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
    background-size: 300% 100%; /* Trzykrotna szerokość dla efektu przesuwania */
    animation: moveGradient 10s linear infinite;
}

@keyframes moveGradient {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -100% 50%;
    }
}