@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Montserrat, sans-serif;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-about {
    animation: fadeInUp 1.5s ease-out;
    padding: 30px;
    width: 60%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .text-about {
        width: 98%;
    }
}

.section-title h1 {
    text-align: center;
    margin-top: 40px;
}

.about-info {
    text-align: center;
    margin-bottom: 10px;
}