* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: white;
}
body{
    overflow-x: hidden;
}
body {
    background: #6b0078;
}

main {
    z-index: 100;
}
li,
a {
    font-family: gilroy-bold;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    background-color: black;
    display: flex;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    padding: 20px 10%;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.cta {
    cursor: pointer;
    text-decoration: none;
}

.cta:hover {
    transition: all 0.3 ease 0s;
    color: red;
}

.nav-links {
    list-style: none;
    text-decoration: none;
}

.nav-links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav-links li a {
    transition: all 0.3 ease 0s;
}

.nav-links li a:hover {
    color: red;
    transition: all 0.3 ease 0s;
}

.active {
    border-bottom: 2px solid white;
    color: red;
}
.activect {
    color: red;
    text-decoration: none;
}
.titlu {
    margin-top: 100px;
    font-size: 30px;
    font-weight: bold;
    justify-content: center;
    display: flex;
    color: red;
}
.eu{
    justify-content: center;
    display: flex;
    margin-top: 20px;
}
.euimg{
    width:400px;
    height: auto;
}
.nume{
    margin-top: 20px;
    font-size: 30px;
    font-weight: bold;
    justify-content: center;
    display: flex;
}
.desc{
    justify-content: center;
    display: flex;
}
.descriere{
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
    border: 2px solid white;
    border-radius: 10px;
    padding: 10px;
    width: 400px;
}
.linkss {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.retele {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    width: 30%;
    border-radius:10px;
    margin-top: 20px;
    background:white;
    border:2px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ig,
.git,
.ctr {
    width: 50px;
    height: 50px;
    cursor:pointer;
}
.ig:hover,
.git:hover,
.ctr:hover {
    scale:1.2;
    transition: all 0.3 ease 0s;
}



.scroll-arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-image: url('../imagini/arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    display: none;
    z-index: 9999;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-arrow.show {
    display: block;
}

.scroll-arrow:hover {
    opacity: 1;
}

.dot {
    position: absolute;
    background-color: black;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation-name: moveLeftRight;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    top: 80px;
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(100vw);
    }
}
