
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1e90ff, #32cd32);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: flex-start; 
    align-items: center; 
    padding-left: 5%; 
    position: relative;  
}


.container {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    overflow: hidden;
    max-width: 800px;
    width: 60%;
    z-index: 2;
}


.profile {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.15);
}

.profile img {
    border-radius: 50%;
    width: 160px;  
    height: 160px;
    border: 4px solid #fff;
    transition: transform 0.3s ease;
}

.profile img:hover {
    transform: scale(1.05);
}


.about {
    flex: 2;
    padding: 30px;
    background: rgba(0,0,0,0.2);
}

.about h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 2px solid #32cd32;
    display: inline-block;
    padding-bottom: 5px;
}

.about p {
    font-size: 1.1em;
    line-height: 1.6;
}


.welcome-box {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-align: center;
}

.welcome-box h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 2px solid #1e90ff;
    display: inline-block;
    padding-bottom: 5px;
}

.welcome-box p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #f0f0f0;
}
