@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');

body {
    margin: 0;
    padding: 0;
    /*background: #0984e3;*/
    background-image: linear-gradient(90deg, #868f96 0%, #596164 100%);
}

.title {
    margin: 0 auto 0 auto;
    display: inline-block;
    width: 100%;
    height: 30vh;
    position: relative;
    margin-bottom: 100px;

}

.title h1{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10em;
}

.title h1 a{
    font-family: 'Nerko One',
    cursive;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.title h1 a:visited {
    color: rgb(0, 0, 0);
}

.loading {
    display: inline-block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obj {
    width: 6px;
    height: 40px;
    background: rgb(0, 0, 0);
    margin: 0 3px;
    border-radius: 10px;
    animation: loading 0.8s infinite;
}

.obj:nth-child(2) {
    animation-delay: 0.1s;
}

.obj:nth-child(3) {
    animation-delay: 0.2s;
}

.obj:nth-child(4) {
    animation-delay: 0.3s;
}

.obj:nth-child(5) {
    animation-delay: 0.4s;
}

.obj:nth-child(6) {
    animation-delay: 0.5s;
}

.obj:nth-child(7) {
    animation-delay: 0.6s;
}

.obj:nth-child(8) {
    animation-delay: 0.7s;
}

@keyframes loading {
    0% {
        height: 0;
    }
    
    50% {
        height: 40px;
    }
    100% {
        height: 0px;
    }
}

.social {
    display: flex;
    width: 400px;
    height: 50px;
    margin: 100px auto;
    align-items: center;
    justify-content: center;
}

.icon {
    display: block;
    margin: auto;
}



.social a {
    text-decoration: none;
    color: black;
    font-size: 40px;
}

.social a:visited {
    text-decoration: none;
}

.social a:hover {
    text-decoration: none;
    color: #e17055;
    transition-duration: .8s;
}

.icon:hover {
    text-decoration: none;
    transform: scale(1.7);
    transition-duration: .3s;
    
}
