*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    background-color: black;
    color:white;
}
.header{
    display: flex;
    justify-content: space-between;
    padding: 25px 10%;
}
.logo{
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 27px;
    cursor: default;
    animation: slideLeft 1s ease forwards;
    opacity: 0;
}
.navbar a{
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 0px 16px;
    font-weight: 600;
    transition: 0.3s all;
    animation: navMenu 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
    opacity: 0;
}
.navbar a:hover,
.navbar a.active {
    color: #0ef;
}
.hero-container{
    display: flex;
    padding: 25px 10%;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}
.info-side h3{
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0;
    letter-spacing: 1px;
}
.info-side h1{
    font-size: 75px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: slideRight 0.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}
.info-side h3 span{
    color: #0ef;
}
.part-1{
    animation: part1 1s ease forwards;
    opacity: 0;
}
.part-2{
    animation: part2 1s ease forwards;
    opacity: 0;
}
p{
    line-height: 27px;
    margin: 20px 0px 40px 0px;
    animation: slideLeftP 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}
i{
    position: relative;
    border: 2px solid #0ef;
    padding: 10px;
    border-radius: 10px;
    color: #0ef;
    margin: 0px 8px;
    transition: 0.3ms;
    animation: socialIcons 1s ease forwards;
    animation-delay: calc(0.2s * var(--i));
    opacity: 0;
}
i:hover{
    box-shadow: 0 0 20px #0ef;
}
button{
    background-color: #0ef;
    margin-top: 30px;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 15px #0ef;
    animation: slideUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}
button:hover{
    box-shadow: none;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes navMenu {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes part1 {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes part2 {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideLeftP {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes socialIcons {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@media screen and (max-width: 600px) {
    body{
        text-align: center;
    }
    .info-side h1{
        font-size: 50px;
    }
    .part-2{
        font-size: 25px;
    }
    .navbar{
        position: absolute;
        margin-top: 2rem;
        top: 35px;
        width: 80%;
        line-height: 2.5rem;
    }
    .info-side{
        margin-top: 2.5rem;
    }       
}
