.header {
    background-color: #F39898;
    width: 100%;
    border: 3px solid #bb5f5f;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0; 
    left: -50px;
    align-items: left;
}
.banner-logo {
    max-width: 100px;
    max-height: 150px;
    margin-right: 100px;
    top: 0;
    left: 0;
    position: fixed;
}

body {
    margin: 0;
    font-family: poppins ;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("bgpink.jpg");
    background-size: cover;
}

.container {
    background-color: #F39898;
    width: 300px;
    height: 400px;
    border: 3px solid #bb5f5f;
    border-radius: 50px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.profile-pic {
    border: 3px solid #bb5f5f;
    border-radius: 50%;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
    border-style: 10px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-color: black;
    object-fit: cover;
}

.text {
    margin-top: 60px;
    margin-bottom: 5px;
}

.study-text {
    margin-bottom: 10px;
}

h1 {
    margin-top: 10px;
    margin-bottom: 28px;
}

.social-icons {
    display: flex;
    bottom: -10px;
    position: relative;
    justify-content: center;
    gap: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer {
        background-color: #F39898;
        width: 100%;
        border: 3px solid #bb5f5f;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 0 20px rgba(0, 0s, 0, 0.3);
        text-align: center;
        position: fixed;
        bottom: 0px;
        left: -50px;
}

