@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=El+Messiri:wght@400..700&family=Josefin+Sans:wght@100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0 auto;
}

.background {
    height: 95vh;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1em;
    font-weight: bold;
    /* background-image: linear-gradient(70deg, #53bdb4,#9198e5); */
    color: white;
    padding: 5vh 0 0 0;
    font-family: "El Messiri", serif;
    font-optical-sizing: auto;
}

.about_me {
    border-radius: 5px;
    margin: 0 1%;
    /* background-color: #08beaf; */
    background-image: linear-gradient(70deg, #53bdb4,#9198e5);
    padding: 1%;
}

.for_name {
    font-weight: bolder;
    font-size: 1.7em;
}

.about_me>p {
    text-align: center;
    margin: 0 auto;
}

.link_to_projects, .link_to_repositories{
    height: 23vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    /* background-color: #08beaf; */
    background-image: linear-gradient(70deg, #53bdb4,#9198e5);
    margin: 1%;
}

.link_to_repositories>a{
    background-image: url(github.png);
    background-position: center;
    background-size: 40%;
    background-repeat: no-repeat;
}

a {
    text-decoration: none;
    text-align: center;
    font-size: 1em;
    background-color: #08beaf;
    border-radius: 15px;
    width: 80%;
    padding: 3%;
    margin: 1%;
    transition-duration: 0.5s;
    box-shadow: 15px 15px 15px rgb(76, 77, 78);
    color: white;
}


@media screen and (min-width: 700px) {
    .background {
        font-size: 1.8em;
    } 

    a {
        width: 60%;
        padding: 0.5%;
        margin: 1% auto;
        font-size: 0.7em;
    }

    a:hover {
        padding: 1% 5%;  
        box-shadow: 5px 5px 5px rgb(76, 77, 78);
    }

    .link_to_projects, .link_to_repositories{
        flex-direction: column;
    }

    .link_to_repositories a{
        background-size: 10%;
        animation-name: coll;
        animation-play-state: paused;
        animation-duration: 15s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }
    
    .link_to_repositories a:hover{
        animation-play-state: running;
    }
    
    @keyframes coll {
        0% {
            background-position: center;
        }
        25% {
            background-position: right;
        }
        75% {
            background-position: left;
        }
        100% {
            background-position: center;
        }
    }

        .link_to_projects>a {
    position: relative;
    overflow: hidden;
    }

    .link_to_projects>a::before {
    content: '';
    position: absolute;
    width: 15%;
    height: 60%;
    background-color: white;
    opacity: 30%;
    padding: 0%;
    top: 0;
    left: 0;
    filter: blur(8px);
    transform: rotate(70deg);
    animation-name: blur;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state:running;
    }

    @keyframes blur {
            0% {
                left: -16%;
            }
            50% {
                left: 50%;
            }
            100% {
                left: 100%;
            }
    }

    @keyframes blur2 {
            0% {
                left: -13%;
            }
            50% {
                left: 53%;
            }
            100% {
                left: 103%;
            }
    }

        .link_to_projects>a:first-child:before {
    animation-name: blur;
    }

    .link_to_projects>a:last-child::before {
    animation-name: blur2;
    }
}







