body {
    margin: 0 auto;

    background-color: #222;
    /*
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 8 8'%3E%3Cg fill='%23b5b5b5' fill-opacity='0.2'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E");
*/
    color: #fff;

    font-family: "Lato", sans-serif;
    font-size: 20px;

    overflow: hidden;
}

::selection {
    background-color: none;
    color: #96DF42;
}

* {
    box-sizing: border-box;
}

.container {
    margin: 0 auto;
    height: 100%;

    background-color: #222;
}

#header {
    display: flex;
    justify-content: space-around;
    align-items: center;

    height: 15vh;

    font-weight: 300;
    text-transform: uppercase;
}

#header div {
    margin-right: -10px;

    letter-spacing: 10px;
}

#background {
    display: flex;

    width: auto;
    height: 70vh;
}

#background div {
    width: 50%;
}

#background-code {
    background-image: url(/assets/img/background%20code.png);
    background-position: center;
}

.avatar-div {
    position: fixed;
    top: 15vh;
    left: 0;
    right: 0;
    bottom: 15vh;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}

#avatar-main-with-circles {
    position: relative;
    z-index: -1;

    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-direction: column;

    width: 400px;

    /*    color: #764FBD;*/

    filter: opacity(0.0) drop-shadow(0 0 0 #222);
}

.circle {
    position: absolute;

    width: 250px;
    height: 250px;
    border: transparent;
    border-radius: 50%;

    background: transparent;

    filter: opacity(1) drop-shadow(0 0 0 #222);
}

.circle span {
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;

    display: block;
    width: 50%;
    height: 4px;

    background: transparent;

    transform-origin: left;
    animation: animate 8s linear infinite;
}

.circle span::before {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;

    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    border-radius: 50%;

    /*    background: #75715E;*/
    background: #1B1B1B;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#circle-fastest {
    animation: animateFastest 4s linear infinite;
}

#circle-fastest::before {
    top: -20px;
    right: -9px;

    width: 15px;
    height: 15px;

    background: #fff;
}

@keyframes animateFastest {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#circle-slower {
    animation: animateSlower 15s linear infinite;
}

#circle-slower::before {
    top: -30px;
    right: -32px;

    width: 60px;
    height: 60px;

    background: #656565;
}

@keyframes animateSlower {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#circle-slow {
    animation: animateSlow 10s linear infinite;
}

#circle-slow::before {
    top: -15px;
    right: -18px;
    /*    right: 385px;*/

    width: 30px;
    height: 30px;

    background: #CE4258;
}

@keyframes animateSlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#avatar-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 900px;

    font-size: 40px;

    text-align: center;

    line-height: 50px;
}

#frontend-dev {
    width: 100%;
    margin-top: -80px;

    /*    color: #75715E;*/
    color: #636363;

    font-family: 'Source Code Pro', monospace;

    animation: animateAvatarText 2s ease-in-out;
}

#frontend-dev span {
    background: white;
}

#designer {
    width: 100%;

    font-family: 'Work Sans', sans-serif;
    font-weight: 900;

    animation: animateAvatarText 2s ease-in-out;
}

#designer span {
    background: #CE4258;
}

@keyframes animateAvatarText {
    0% {
        line-height: 0px;
    }

    100% {
        line-height: 50px;
    }
}

footer {
    display: flex;
    justify-content: space-around;
    height: 15vh;
}

footer div {
    display: flex;
    align-items: center;
}

#footer-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.icon {
    width: 100%;
}

a {
    text-align: center;
}

a img {
    width: 60%;
}

.icon:hover {
    -webkit-filter: opacity(.5) drop-shadow(0 0 0 #000);
    filter: opacity(.5) drop-shadow(0 0 0 #000);
}

.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.1;
}

.footer-text {
    padding: 0 20px;

    font-size: 18px;
    font-weight: 300;
}
