@import url(../css/general.css);

/* Navbar color change */
.logo{
    color: var(--color-black);
}

#language{
    color: var(--color-black);
}

/* Text styling */
.text-with-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.text-with-text p {
    color: #FF5F00; 
    text-align: center;
    font-family: Montserrat;
    font-size: 300px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 300px */
}

.text-with-text h2{
    color: var(--color-black);
}

/* Container styling */
.fourcontainer{
    display: flex;
    padding: 30px 0px 96px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 62px;
    flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .text-with-text p {
        font-size: 220px;
    }
}

@media (max-width: 480px) {
    .text-with-text p {
        font-size: 144px;
    }
}
