*{
    padding: 0;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    scroll-behavior: smooth;
}
body{
    background: #333; 
}
.container{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.container span{
    text-transform: uppercase;
    display: block;
}
.text1{
    color: white;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: #333;
    position: relative;
    animation: text 3s 1;
}
.text2{
    font-size: 30px;
    color: #8e44ad;
    
}
@keyframes text{
    0%{
        color: #333;
        margin-bottom: -40px;
    }
    30%{
        letter-spacing: 25px;
        margin-bottom: -40px
    }
    85%{
        letter-spacing: 8px;
        margin-bottom: -40px;
    }
}
.meni {
    text-align: center;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,30%);
}
.meni ul {
    list-style: none;
    margin: 10px;
    padding: 0;
}
.meni li {
    display: inline-block;
	margin-top: 20px;
}

.meni a {
    text-decoration: none;
    color: whitesmoke;
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'Work Sans', sans-serif;
    animation: meni 5s 1;
	transition: 0.3s;
	padding: 3px 20px;
	border: 2px solid whitesmoke;
    border-radius: 10px;
}
.meni a:hover {
    text-decoration: underline;
    color: #9b59b6;
	border: 3px solid #9b59b6;
}
@keyframes meni{
    0%{
        opacity: 0%;
    }
    60%{
        opacity: 0%;
    }
    100%{
        opacity: 100%;
    }
}
.logo{
    text-align: center;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%,80%);
    animation: logo 5s 1;
}
@keyframes logo{
    0%{
        opacity: 0%;
    }
    60%{
        opacity: 0%;
    }
    100%{
        opacity: 100%;
    }
}

/* Scroll bar */

::-webkit-scrollbar {
    width: 0.8rem;
}

::-webkit-scrollbar-track {
    background: #141414;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border: solid 3px #141414;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}