*
{
    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: 250px;
    padding: 50px 0;
    cursor: pointer;
}

.content{
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #00000;
}

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

.content h1 span{
    color: #49acfc;
}

.startup{
    width: 200px;
    position: absolute;
    right: 20%;
    bottom: 20%;
    animation: startup 0s linear infinite;
}

@keyframes startup{
    0%{
        bottom: 0;
        opacity: 0;
    }
    100%{
        bottom: 100%;
        opacity: 1;
    }
}