@charset "UTF-8";
header {
    height: 600px;
    background-image: url("/static/image/calculator-header.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}

header {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

header.show {
    opacity: 1;
}
.header_words {
    display: flex;
    height: 70%;
    justify-content: start;
    align-items: center;
    text-transform: uppercase;
    text-align: start;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 50px;
    color: rgba(241, 241, 241, 0.8);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.animated-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header_words {
        width: 80%;
        font-size: 38px;
    }

    .header-words-container {
        margin: 0;
        padding: 5px;
    }
}

@media (min-width: 769px) {
    .header_words {
        width: 100%;
        font-size: 50px;
    }

    .header-words-container {
        padding: 5px;
    }
}