/*
Theme Name:   AhmedPortFolioGobelins
Author:       Ahmed Kabbej
Template:     twentytwentyone
*/






@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@500&display=swap');


.footermover {

    font-family: 'Grenze Gotisch', serif;
    display: flex;
    position: relative;
    justify-content: flex-end;
    right: 2%;
    margin: 2%;
}

.footermover:hover {
    color: #DAA06D;
}

.wp-block-column {
    gap: 30%;
}

.wp-image-301 {

    clip-path: circle(90px);
    width: 200px;
    height: 200px;
    background-color: blanchedalmond;
    transition: background-color 0.3s ease;

}

.wp-image-301:hover {
    background-color: #DAA06D;
}

#follower {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    position: absolute;
    margin: -16px 0 0 -16px;
    z-index: 150000;
}








body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wavebackground {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #141414;
}

.wave {
    width: 5px;
    height: 100px;
    background: linear-gradient(45deg, #DAA06D, #fff);
    margin: 10px;
    animation: wave 1s linear infinite;
    border-radius: 20px;
}

.wave:nth-child(2) {
    animation-delay: 0.1s;
}

.wave:nth-child(3) {
    animation-delay: 0.2s;
}

.wave:nth-child(4) {
    animation-delay: 0.3s;
}

.wave:nth-child(5) {
    animation-delay: 0.4s;
}

.wave:nth-child(6) {
    animation-delay: 0.5s;
}

.wave:nth-child(7) {
    animation-delay: 0.6s;
}

.wave:nth-child(8) {
    animation-delay: 0.7s;
}

.wave:nth-child(9) {
    animation-delay: 0.8s;
}

.wave:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes wave {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}