* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.6;
    color: #ffffff ;
    background-color: #0f172a;
} 

p {
    color: lightgray;
    font-size: 1.0rem;
    text-align: justify;
    font-weight: 400;
}
a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 3.0rem;
    font-weight: 700;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.left-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.link-container {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    gap:20px;
}

.section {
    padding: 60px 0;

}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.project {
    padding: 20px 0px 20px 0px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.project h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 500;

}

.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
  }
  
  .left {
    left: 0;
    padding-left: 100px;

  }
  
  .right {
    right: 0;
    padding-right: 100px;
  }
  
#contact{
    padding-bottom: 80px;
}
#contact div{
    display: flex;
    height: 30px; 
    gap:20px;
}
#contact div img {
    max-width: 100%;
    max-height: 100%;
    opacity: 70%;
  }
#contact div img:hover {
    opacity: 100%;
    transition: all 0.3s ease 0s;
 }