* {
    box-sizing:content-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #000000;
    background-color: rgb(247, 196, 196); /*linear-gradient(to right, #6a11cb, #2575fc); */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.header {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px;
    background-image: url(bg1.jpg);
   background-size: 100%;
    /* background: #333; */
    color: white;
    border-radius: 8px 8px 0 0;
}

.header .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    border: 4px solid white;
}

.header-text h1 {
    margin-bottom: 5px;
}

.header-text p {
    font-size: 1.2em;
    margin-bottom: 0;
}

.box {
    padding: 20px;
    background: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #000000;
    padding-bottom: 5px;
}

.education-item, .experience-item {
    margin-bottom: 20px;
}

.education-item h3, .experience-item h3 {
    margin-bottom: 5px;
    color: #333;
}

.skills-list {
    list-style-type: none;
    padding-left: 0;
}

.skills-list li {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.skills-list li:last-child {
    border-bottom: none;
}

a {
    color: #2575fc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 0 0 8px 8px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header .profile-img {
        margin-bottom: 10px;
    }

    .header-text h1 {
        font-size: 1.5em;
    }

    .header-text p {
        font-size: 1em;
    }
}
