@font-face {
    font-family: 'CascadiaCode-Regular';
    src: url(../SRC/TYPO/Cascadia_Code/CascadiaCode-Regular.ttf);
}
@font-face {
    font-family: 'Rubik-SemiBold';
    src: url(../SRC/TYPO/Rubik/Rubik-SemiBold.ttf);
}
@font-face {
    font-family: 'Rubik-ExtraBold';
    src: url(../SRC/TYPO/Rubik/Rubik-ExtraBold.ttf);
}

/* base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow: hidden;
    
    font-family: 'CascadiaCode-Regular';
    background-color: #F5F2E8;
    color: #4638c2;
}

h1 {
    margin-bottom: 2rem;
    padding: 0 0 2.5rem;
    
    font-family: 'Rubik-ExtraBold';
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #5a3fb5;
    
    border-bottom: dashed #613DC1;
}

/* header */
.header {
    width: 100%;
    padding: 1rem;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    
    font-size: 1.5rem;
}

.navbar a {
    color: #888bff;
    text-decoration: none;
}

.navbar a:hover {
    opacity: 0.7;
}

/* timmy */
.marquee {
    position: fixed;
}

/* container principal */
.container {
    margin: 60px auto 0;
    
    max-width: 1400px;
    padding: 0 40px;
}

.about-section {
    margin-bottom: 80px;
}

.experience-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
}

.experience-left h2 {
    margin-bottom: 40px;
    
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 3px;
    color: #9b8de8;
}

.experience-item {
    margin-bottom: 35px;
}

.experience-item h3 {
    margin-bottom: 10px;
    
    font-size: 16px;
    font-weight: normal;
    color: #7b68ee;
}

.experience-item p {
    margin-left: 20px;
    
    font-size: 14px;
    line-height: 1.5;
    color: #7b68ee;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    width: 100%;
    height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    
    object-fit: contain;
}

/* responsive */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;

        margin: 30px auto 0;
    }
    
    .experience-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    h1 {
        font-size: 2rem;
        padding: 0 0 1rem;
        margin-bottom: 1rem;
    }

    p {
        font-size: 0.8rem;
    }

    .about-section {
    margin-bottom: 40px;

    }
}