body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.container1 {
    margin: 15px auto;
    max-width: 800px;
    padding: 5%;
    background-color: #fff;
    border: 4px solid rgb(0, 0, 0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 5%;
}

h2 {
    color: #708090;
    text-decoration: underline;
}

p {
    color: #666;
}

a {
    text-decoration: none;
    color: #4169E1;
}

.coding {
    font-weight: bold;
}

header {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

header h1 {
    color: #4169E1;
    font-size: 3vw;
}

header p {
    color: #333333;
    margin: 5px 0;
}

.profile-pic {
    display: block;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border: 4px solid #4169E1;
    box-shadow: 1px 3px 25px rgba(0, 0, 0, 0.5);
}

.social {
    display: flex;
    transform: scale(0.6);
    width: 50%;
}

@media only screen and (max-width: 600px) {
    .profile-pic {
        display: none;
        width: 50px;
        height: 50px;
        border: 0.02px solid #4169E1;
    }
    .social {
        transform: scale(0.4);
        height: 5px;
    }
    .container1 {
        padding: 3px;
        border-radius: 1%;
    }
    
}
@media only screen and (max-width: 300px) {
    header {
        display: none;
    }
    .container1 {
        position: absolute;
    }
}


