/* // <uniquifier>: Use a unique and descriptive class name */
/* // <weight>: Use a value from 100 to 900 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.noto-serif-classVar {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
    font-family: 'Noto Serif', Arial, sans-serif;
    /* line-height: 1.6; */
    margin: 15px 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #1E3050;
}

.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
    left: 0;
    top: 0;
}

.header {
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
}

.Profile-Logo-Containder {
    margin-right: 10px;
}

.header .Profile-Logo-Containder {
    /* border: 1px solid #333; */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.header .Profile-Logo-Containder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the entire container */
    border-radius: 50%; /* Ensures the image itself is clipped to the circle shape */
}

.header p {
    margin: 5px 0 10px;
    font-size: 0.9rem;
    color: #666;
}

.contact-info i {
    width: 20px;
    margin-right: 5px;
    font-size: 1.5rem;
    color: #1E3050;
}

section {
    margin-bottom: 35px;
    /* border: 1px solid #ddd; */
    padding: 5px 0;
    border-radius: 10px;
    background-color: #6666660f;
}

h2 {
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 10px;
    padding-left: 10px;
    margin-top: 0;
    font-weight: 900;
}

h3 {
    font-size: 1.2rem;
    color: #333;
    /* margin-top: 10px; */
}

ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 42px;
    padding-right: 15px;
}

ul li {
    margin-bottom: 10px;
    font-size: 0.8rem;
}

strong {
    color: #333;
}

p {
    font-size: 0.8rem;
}

section p {
    padding: 0 10px;
}

section h3 {
    padding-left: 10px;
}

canvas {
    display: block;
    vertical-align: bottom;
  }

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.skillsContainer{
    margin: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.skillElement{
    background: #1E3050;
    color: #ffff;
    padding: 2px 13px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    margin: 2px 5px;
}

.exp-item-header{
    display: flex;
    align-items: center;
    margin-left: 18px;
    margin-bottom: 15px;
}

.exp-item-header p {
    padding: 0;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }
}
