/* Global styles */
/* styles.css */
@import url('./about_me.css');
@import url('./contact.css');
@import url('./header.css');
@import url('./menu.css');
@import url('./projects.css');
@import url('./roadmap_slider.css');
@import url('./skills.css');
@import url('./socials.css');

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(
            to bottom,
            #edf2f4 0%,
            #ACB3B1 40vh,
            #2b2d42 100%
    );
    color: #ffffff;
    scroll-behavior: smooth;
}

section {
    padding: 5rem 2rem;
    text-align: center;
}

.container {
    position: relative;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

h3 {
    display: flex;
    align-items: center;
    margin: 0;
}

.icon {
    width: 1.7rem;
    height: 1.7rem;
    padding: 0.7rem;
}


/* Media Query para tablets o inferiores */
@media screen and (max-width: 768px) {
    .title-with-icon {
        display: block;
        text-align: center;
    }

    h3 {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .icon {
        margin-left: 0.5rem;
    }

    p {
        text-align: center;
    }
}

footer {
    text-align: center;
    padding: 1rem;
    background: transparent;
    color: white;
}
