*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Space Grotesk", sans-serif; 
    overflow-x: hidden;
    padding: 20px 0;
    background-color: #111318;
    
}

.container{
    position: relative;
    width: 1000px;
    height: 1400px;
    margin: 0px auto;
    border: rgb(255, 255, 255) 2px solid;
    box-shadow: #fff 0 0 30px;
    z-index: 9999;}
    

.black{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: #323B4C;
    z-index: -1;
}

.profile-photo{
    position: absolute;
    top: 170px;
    left: 150px;
    transform: translate(-50%,-50%);
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
    filter: grayscale(30%);
}

.gray{
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #E4E4E4;
    z-index: -2;
}

.white{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -3;
}



.header{
    
    position: absolute;
    top: 35px;
    left: 30%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    color : #fff;
       
}

.header h1{
    letter-spacing: 4px;
    font-size: 40px;
}

.header h4{
    letter-spacing: 5px;
}


.contact-info{
    position: absolute;
    top: 300px;
    margin: 10px;
    padding-left: 20px;
    
    
}

.contact-info h3{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #111;
    letter-spacing: 1px;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
   
}

.skills {
    position: absolute;
    top: 470px;
    margin: 10px;
    padding-left: 20px;
}

.skills h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #111;
    letter-spacing: 1px;
}

.skills ul {
    list-style: none;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.skills ul li::before {
    content: "• ";
    color: #323B4C;
    font-weight: bold;
}


.profile {
    margin-bottom: 40px;
}

.profile h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #323B4C;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.profile p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

.experience {
    margin-top: 40px;
}

.experience h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #323B4C;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.job {
    margin-bottom: 25px;
}

.job h3 {
    font-size: 19px;
    color: #111;
    margin-bottom: 4px;
}

.job .date {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.job ul {
    margin-left: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.job ul li {
    margin-bottom: 6px;
    list-style: disc;
}


h2, h3 {
    font-weight: 600;
}

