*
{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}

.container{
    width: 100vw;
    height: 100vh;
    background-image: url(images/background.jpg);
    background-position: center;
    background-size: cover;
    padding: 0 8%;
    position: relative;
}

.logo{
    width: 300px;
    padding: 50px 0;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.content{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 100%;

}

.content h1{
    font-size: 50px;
    font-weight: 250;
}


.startup{
    width: 150px;
    position: absolute;
    right: 20%;
    bottom: 40%;
    animation: startup 4s linear infinite;
}

@keyframes startup{
    0%{
        bottom: 0;
        opacity: 0;
    }
    100%{
        bottom: 100%;
        opacity: 1;
    }
}
/* Typing animation text */
/* Typing animation text */
#typing-text{
    color: #ffffff;        /* default text = white */
    white-space: nowrap;
}

/* Blue highlighted word */
.blue{
    color: #49acfc;
    text-shadow:
        0 0 6px rgba(73, 172, 252, 0.6),
        0 0 12px rgba(73, 172, 252, 0.6),
        0 0 20px rgba(73, 172, 252, 0.8);
    animation: glowPulse 2s ease-in-out infinite;
}

/* Blinking cursor */
.cursor {
    display: inline-block;
    margin-left: 4px;
    color: #49acfc;
    animation: blink 1s infinite;
}

/* Cursor blink animation */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
.bottom-link{
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.bottom-link a{
    color: #49acfc;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.bottom-link a:hover{
    text-decoration: underline;
    color: #7bc4ff;
}
.glow {
  color: #00aaff;
  text-shadow:
    0 0 5px #00aaff,
    0 0 10px #00aaff,
    0 0 20px #00aaff;
  font-weight: 400;
}

