/*Desktop and upper*/
@media (min-width: 800px) {
    :root {
        /*Loading animation off logo*/
        --pfp-first-height: 20%;
        --pfp-first-offset: 25%;

        --pfp-second-height: 60%;
        --pfp-second-offset: 13%;

        --pfp-third-height: 40%;
        --pfp-third-offset: 19%;
    }
}

/*Desktop to mobile middle*/
@media (min-width: 800px) and (max-width: 900px) {
    :root {
        --links-witdh: 45%;
    }
}
@media (min-width: 900px) and (max-width: 1000px) {
    :root {
        --links-witdh: 40%;
    }
}
@media (min-width: 1000px) and (max-width: 1100px) {
    :root {
        --links-witdh: 37%;
    }
}
@media (min-width: 1100px) and (max-width: 1200px) {
    :root {
        --links-witdh: 35%;
    }
}
@media (min-width: 1200px) and (max-width: 1300px) {
    :root {
        --links-witdh: 33%;
    }
}
@media (min-width: 1300px) and (max-width: 1400px) {
    :root {
        --links-witdh: 29%;
    }
}
@media (min-width: 1400px) and (max-width: 1500px) {
    :root {
        --links-witdh: 27%;
    }
}
@media (min-width: 1500px) and (max-width: 1600px) {
    :root {
        --links-witdh: 25%;
    }
}
@media (min-width: 1600px) and (max-width: 1700px) {
    :root {
        --links-witdh: 25%;
    }
}
@media (min-width: 1700px) {
    :root {
        --links-witdh: 23%;
    }
}


/*Mobile and down*/
@media (max-width: 799px) {
    :root {
        /*Loading animation off logo*/
        --pfp-first-height: 20%;
        --pfp-first-offset: 25%;

        --pfp-second-height: 35%;
        --pfp-second-offset: 15%;

        --pfp-third-height: 30%;
        --pfp-third-offset: 19%;

        --links-witdh: 65%;
    }
}

html, body {
    margin: 0;
    background-color: #2e302e;
    color: white;
    height: 100%;
    width: 100%
}

ul {
    list-style: none;
    padding: 0;
}

.welcome {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes Welcome-PFP-Animation {
    0% {
        border: rgb(0, 0, 0) solid 2px;
        border-radius: 50%;
        top: var(--pfp-first-offset);
        height: var(--pfp-first-height);
    }
    50% {
        border: rgb(255, 255, 255) solid 2px;
        border-radius: 50%;
        top: var(--pfp-second-offset);
        height: var(--pfp-second-height);
    }
    100% {
        border: rgb(35, 165, 89) solid 5px;
        border-radius: 50%;
        top: var(--pfp-third-offset);
        height: var(--pfp-third-height);
    }
}

.welcome .pfp {
    transform: rotate(10deg);
    position: fixed;
    top: var(--pfp-third-offset);
    z-index: 0;
    height: var(--pfp-third-height);
    border: rgb(35, 165, 89) solid 5px;
    border-radius: 50%;
    animation-name: Welcome-PFP-Animation;
    animation-duration: 2s;
}

.welcome .contacts {
    position: absolute;
    z-index: 1;
    top: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--links-witdh);
    background-color: #262926;
    border: #262926 solid 20px;
    border-radius: 20px;
}

.welcome .contacts li {
    cursor: pointer;
}