body {
    font-family: 'arial', sans-serif;
    background-color: rgb(255, 255, 255);
    margin: 150px;
}

.resume-container {
    display: flex;
    background-color: rgb(238, 223, 215);
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow:0 0 20px rgba(rgb(107, 94, 94), green, blue, alpha) ;
} 
/* Left Section Styling */
.left-section {
    background-color: #2c2c2c;
    color: white;
    padding: 20px;
    width: 35%;
    text-align: center;
    border-right: 5px solid #e63946;
}

.profile-picture {
    width: 150px;
    height: 150px;
    margin-top: 10%;
    border-radius: 50%;
    border: 5px solid #a88285;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin: 10px 0;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 18px;
    padding: 2%;
    margin: 20px 0 10px;
    color: black;
    border-radius: 10px;
    box-shadow: 0 0 15px #c4666e;
    margin-top: 5%;
    margin-bottom: 5%;
}

ul {
    list-style-type: style type square;;
    padding: 10;
    margin: 10px 0;
}

ul li {
    margin: 5px 0;
}

/* Right Section Styling */
.right-section {
    padding: 20px;
    width: 65%;
}

button {
    font-family: Arial, sans-serif;
    border-radius: 10px;
    box-shadow: 0 0 15px black;
    cursor: pointer;
    margin-top: 10px;
    font-size: 18px;
}

button:hover {
    background-color: #916fe0;
}