* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    background-color: rgb(0, 0, 33);
}

.custom-navbar {
    background-color: rgb(18, 18, 62) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: white;
  }
  
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgb(18, 18, 62);
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.column {
    width: 100%;
    max-width: 600px;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.myName {
    color: white;
    text-align: center;
    font-size: 23px;
}

.text {
    color: rgb(153, 153, 226);
}

.name {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #666;
}

.education,
.skills {
    margin-top: 40px;
}

.education .container,
.skills .container {
    margin-bottom: 20px;
}

.education .title,
.skills .title {
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.objective {
    text-align: center;
    margin-top: 40px;
    color: rgb(153, 153, 226);
}

.career {
    background-color: rgb(0, 0, 33);
    padding: 50px 20px;
    border-radius: 15px;
  }
  
  .career h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  
  .objective p {
    margin-bottom: 20px;
    line-height: 1.7;
  }
