body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fdf5e6; 
    color: #333;
}

header {
    margin: -30px 0px 0px 0px;
    padding: 10px;
    text-align: center;
}

.navagation ul {
    list-style: none;
    padding: 0;
}

.navagation li {
    list-style: none;
    padding: 0;
}

.navigation {
    list-style: none;
    padding: 10px 10px 0px 10px;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #ffcc99c6;
}

.navigation li {
    display: inline;
     position: relative;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: relative;

}

.navigation a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px; 
    width: 0;     
    height: 4px;   
    background-color: #e2c2a1; 
    transition: width 0.3s ease, left 0.3s ease;

}

.navigation a:hover::after {
    width: 100%;  
    left: 0;      
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.column {
    flex: 1 1 calc(50% - 40px);
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
   text-align: center ;
   padding:20px 10px 10px 10px;
  
}

#name {
    font-family: Arial, sans-serif;
    font-size: 48px;
    text-align: center;
    color: #333;
    margin: 10px 0;
}

#title {
    font-family: Arial, sans-serif;
    font-size: 24px;
    text-align: center;
    color: #333; 
    margin-bottom: 0px;
}

.code-sample {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f9f2ec; 
    border-left: 4px solid #e2c2a1;
    padding: 10px;
    white-space: pre-wrap;
}

footer {
    text-align: center;
    background-color: #f4e2d4;
    padding: 10px;
    margin-top: 20px;
}
body {
    margin: 20px 200px 0px 200px;
    padding: 0px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #ffcc99; 
}

.sidebar {
    background-color: #2c2c2c; 
    color: #fff;
    width: 35%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 20px 20px 20px 20px;
}
.education{
    margin: -20px 0px 10px 0px;
}
.sidebar img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 4px solid #ffcc99;
    margin-bottom: 20px;
}

.sidebar h2 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffcc99; 
}

.sidebar p {
    line-height: 1.6;
    font-size: 16px;
    margin: 10px 0;
}

.main-content {
    width: 70%;
    padding: 40px;
    background-color: #fff;
}

.name-and-title {
    text-align: left;
    margin-bottom: 20px;
}

.name-and-title h1 {
    font-size: 36px;
    margin: 0;
    color: #2c2c2c;
}

.name-and-title p {
  
    font-size: 10px;
    color: #493724;
    font-weight: bold;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c2c2c;
    border-bottom: 2px solid #ffcc99;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 15px;
}

ul li strong {
    font-weight: bold;
    display: block;
    font-size: 18px;
}

ul li p {
    margin: 5px 0 0;
    line-height: 1.6;
    color: #555;
}

.footer-items{
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    gap: 20px;
      justify-content: space-around;
}
.logo_rs{
    width: 70px;
    height: 40px;
}
.footer_year{
    font-size: 25px;
    margin: 0;
}
.footer-link{
    
font-size: 25px;
  text-decoration: none;
  color: #000000;
   transition: 0.3s;
   cursor: pointer;
     font-weight: 500;
}
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}