* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Roboto;
    font-size: 125%;
    background-color: #F5F5F5;
    color: #3D3A3A
}

.main-section{
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto;
    padding: 5%;
    width: 100%;
    gap: 5%;
    max-width: 100%;
    max-height: 90%;
    position: relative;
}

.text-section {
    display: flex;
    flex-direction: column;
    width: 200%;
}
.text-section {
    display: flex;
    flex-direction: column;
}

.title-section {
    color: #EA7A00;
}

.subtitle-section{
    margin: 2% 0%;
}
.paragraph-section{
    margin: 2% 0%;
}

.tech-used{
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    margin: 0 auto;
    padding: 5%;
    width: 100%;
    max-width: 100%;
    max-height: 90%;
    position: relative;
}

.cards-row{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    justify-content: center;
}

@media screen and (max-width: 900px) {
    .main-section {
        flex-direction: column;
        padding: 2%;
    }
    .text-section {
        width: 100%;
    }
    .tech-used {
        flex-direction: column;
    }
    .cards-row {
        flex-direction: column;
        align-items: center;
    }
    
}