:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
    :root { font-family: 'Inter var', sans-serif; }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-feature-settings: "ss03", "cv02", "cv11";
    font-weight: 500;
}
body {
    background-color: rgb(17, 23, 41);
    font-family: Arial, sans-serif;
    background-color: rgb(17, 23, 41);
    margin: 0;
}
p {
    color: rgb(148, 163, 184);
    font-size: 14px;
    font-weight: 320;
    letter-spacing: 1px;
}
a {
    text-decoration: none; /* Remove underline */
    color: inherit;
}
h1 {
    font-size: 48px;
    color: rgb(227, 232, 239);
    font-weight: 700;
}

h2 {
    color: rgb(227, 232, 239);
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 18px;
}
h3 {
    color: rgb(227, 232, 239);
}
h4 {
    color: rgb(92,104,127);
    font-weight: 450;
}


ol,ul {
    list-style: none;
}
/* Cursor highlight */
.cursor {
    width: 1008px;
    height: 1016px;
    /* background: radial-gradient(circle at center, transparent 0%, rgba(29, 78, 216, 0.15) 80%); */
    background: radial-gradient(circle at 50% 50%, rgba(31, 75, 194, 0.15), transparent 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 1;
    left: 300px;
}

.container {
    display: flex;
    max-width: 100vw;
    height: 100vh;
    padding: 0px 40px;
    max-width: 1200px; /* Adjust the value to your desired maximum width */
    min-width: 900px;
    margin: 0 auto; /* Center the content horizontally within the container */
}
/* @media (max-width: 900px) {
    .container {
      flex-direction: column;
      flex-wrap: wrap;
      min-width: none !important;
      height: auto;
    }
  
    .scrolling-column, .static-column {
      width: 90% !important;
      height: auto !important;
      margin: 0 !important;
      background-color: brown;
      overflow: auto;
    }
  
    .static-column {
        position: relative;
      height: auto !important; 
      position: absolute;
      overflow: auto; 
    height: 700px !important;
    }
  
    .scrolling-column {
      height: auto !important; 
    }
  } */
  @media (max-width: 900px) {
    .container {
        flex-direction: column;
        min-width: 100% !important; /* Set to 100% for dynamic width */
        width: 100% !important; /* Set to 100% for dynamic width */
        height: auto;
    }

    .scrolling-column, .static-column {
        width: 100% !important; /* Set to 100% to fill the container */
        max-width: 100%; /* Add a maximum width to prevent overflow */
        height: auto !important;
        margin: 0 !important;
        background-color: brown;
        overflow: auto;
    }

    .static-column {
        position: relative;
        height: auto !important;
        position: absolute;
        overflow: auto;
        height: 700px !important;
    }

    .scrolling-column {
        height: auto !important;
    }
    .experience-content {
        display: flex;
        flex-direction: column;
    }
    .date-container {
        margin-top: 15px;
        order: 2;
    }
    .project-content {
        display: flex;
        flex-direction: column;
    }
    .image-container {
        margin-top: 15px;
        order: 2;
    }
    .description-content h2 {
        order: 1;
    }
}
 