@charset "UTF-8";

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    min-height: 100vh; 
}

.left {
    width: 42%;
    padding: 100px;
    background-color: #EEEEEE;
    text-align: center;
}

.left h3 {
    text-align: right;
    margin-top: 0;
	color: #2d2d7d;
}

.left p {
    color: #333;
    font-size: 1.1em;
    text-align: left;
}

.left h3.caprasimo-regular {
    font-size: 24px;
    text-align: left;
    color: #2d2d7d;
}

.left .software-icons img {
    width: 87px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.left .profile-pic {
    width: 400px;
    height: 440px;
    margin-top: 0px;
}

.left h1,
.left h2,
.left h3 {
	color: #2d2d7d;
}

.left h1.caprasimo-regular {
    font-size: 36px;
    text-align: left;
}

.left h2.caprasimo-regular {
    font-size: 32px;
    color: red;
}

.left h3.caprasimo-regular {
    font-size: 24px;
    color: #2d2d7d;
}

.left p {
    color: #333;
    font-size: 16px;
}


.projects {
    text-align: left;
    color: #2d2d7d;
}

.projects .project-item {
    display: inline-grid;
    margin-right: 20px;
}

.projects .project-item img {
    width: 170px;
    height: 250px;
    margin-top: 20px;
}

.projects a {
    color: #FB7B8B; 
    text-decoration: none;
}

.projects a:hover {
    text-decoration: underline;
}

.right {
    flex: 1; 
    padding: 60px;
    background-color: #26236f; 
    color: white;
    overflow-y: auto; 
}

.section {
    margin-bottom: 40px;
}

.section h3.caprasimo-regular {
    color: #B4BBF0;
    font-size: 24px;
    margin-bottom: 10px;
}

.section p,
.skills .skill-item {
    margin: 5px 0;
}

.skills {
    display: flex;
    flex-wrap: wrap;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-bottom: 10px;
}

.skill-item .dots {
    display: flex;
    gap: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #0969fa;
    border-radius: 50%;
}

.dot.filled {
    background-color: #fefcfc;
}

a {
    color: #EBEBEB;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.caprasimo-regular {
    font-family: 'Caprasimo', serif;
    font-weight: 400;
    font-style: normal;
}






