@font-face {
  font-family: 'BLACKJAR';
  src: url('../images/BLACKJAR.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
    background-image: url('../images/6.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.botao-imagem {
    width: 240px;
    height: 85px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    text-align: left;
    box-shadow: 8px 4px 10px rgba(215, 214, 214, 0.3);
    margin-top: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    z-index: 1;
}

.span-button {
    color: #5959f4;
    font-weight: bold;
    font-size: 20px;
    margin-left: 25px;
}

.span-img {
    width: 100%;
}

.typewriter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 5rem;
    font-family: 'Mitr', sans-serif;
    margin-top: 50px;
    color: white;
    font-weight: bold;
    font-family: 'BLACKJAR';
}

.typewriter-line span {
    display: inline-block;
    opacity: 0;
    animation: aparecer 0.05s forwards;
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.planeta-animado {
    width: 25%;
    margin-left: 20px;
    position: absolute;
    animation: moverPlaneta 75s ease-out forwards;
    animation-delay: 5s;
}

#planeta {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
}

@media (max-width: 768px) {
    .typewriter-container {
        font-size: 4rem;
    }

    div#planeta {
        display: hidden !important;
    }

    .col.d-flex.flex-column.align-items-end {
        align-items: center !important;
    }

    .planeta-animado {
        width: 30%;
        animation: none;
    }

   
}