* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f3f8ff;
    color: #000;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.header {
    background-color: #7cbcff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px 10px 0 0;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.header h1 {
    font-size: 24px;
    font-weight: bold;
}

.header h3 {
    font-size: 16px;
    margin: 5px 0;
    font-weight: normal;
}

.quote {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 10px;
}

.btn {
    background-color: #007BFF;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

.about {
    padding: 20px;
    background-color: #a9cfff;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
}

.about h2 {
    color: #007BFF;
    margin-bottom: 10px;
}

.skills {
    padding: 20px;
    background-color: #a9cfff;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
}

.skills h2 {
    color: #007BFF;
    margin-bottom: 15px;
}

.skill-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.skill img {
    width: 60px;
    height: 60px;
}

.skill p {
    margin-top: 5px;
    font-weight: bold;
}

.contact {
    padding: 20px;
    background-color: #a9cfff;
    margin: 20px;
    border-radius: 10px;
}

.contact h2 {
    text-align: center;
    color: #007BFF;
    margin-bottom: 10px;
}

.contact p {
    text-align: center;
    margin-bottom: 15px;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact label {
    margin: 5px 0;
    font-weight: bold;
}

.contact input,
.contact textarea {
    padding: 8px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}

.contact button {
    align-self: center;
    margin-top: 10px;
}