@font-face {
    font-family:myFont;
    src:url(/fonts/Comix\ Loud.ttf);
}

@font-face {
    font-family:myFont2;
    src:url(/fonts/modern.ttf);
}


@keyframes move {
    0% {
      background-position: 0px;
    }

    100% {
        background-position: 60px;
    }
  }

body {
    margin-top:30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border:4px solid #d3a015;
    width: 600px;
    height: 800px;
    border-radius: 5px;
    -webkit-box-shadow: 8px 7px 8px -3px #d3a015; 
    box-shadow: 8px 7px 8px -3px #d3a015;
}

.semn {
    border:1px solid black;
    background-color:#f2bf31;
    height: 100px;
    width: 100px;
    transform: rotate(45deg);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.semn2 {
    border:3px solid black;
    border-radius:10px;
    display: flex;
    align-items: center;
    height: 80px;
    width: 80px;
}

.mesaj {
    font-size: 11px;
    font-family: myFont;
    transform:rotate(-45deg);
    margin:0;
}

.bara_progres_bg {
    margin-top:40px;
    border-radius:10px;
    width:140px;
    height:20px;
    border: 2px solid black;
}

.bara_progres_fr {
    background-image: linear-gradient(to left, #f2bf31 25%,#000 25% 50%, #f2bf31 50% 75%, #000 75% 100%);
    border-top-left-radius: 8px;
    border-bottom-left-radius:8px;
    width:60px;
    height:20px;
    animation: move 3s linear infinite;
}

.procente {
    width: 144px;
    height: 20px;
    display: flex;
    justify-content: space-between;
}

.procente > p {
    font-weight: bold;
    margin-top:5px;
    font-size: 14px;
}

.logouri {
    display: flex;
    justify-content: space-around;
    width: 205px;
    height: 50px;
    /* background-color: #f2bf31; */
}


.salut {
    width: 500px;
}

.salut > p {
    text-align:center;
    font-family: myFont2;
    font-size:18px;
}

.logo_lk, .logo_git {
    display: flex;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
}

.ancora > img {
    width: 70px;
    height: 70px;
}

.ancora > img:hover {
    background-color:#f2bf31;
    border-radius: 100%;

}

.logo_lk > img:hover {
    background-color:#f2bf31;
    border-radius: 100%;

}

.linkuri {
    display: flex;
    margin-top:40px;
    flex-direction: column;
    height: auto;
    width:500px;
    /* border: 2px solid black; */
    border-radius: 8px;
    align-items: center;
}

.link {
    border-radius: 5px;
    color:black;
    text-decoration: none;
    font-family: myFont2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 450px;
    height: 40px;
    border: 1px solid black;
    margin-top:3px;
}

.link:hover {
    background-color: #f2bf31;
}