.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #3c3f4e;
    color: white;
    padding: 30px 0;
    /*text-align: center;*/
    vertical-align: middle;
    z-index: 1000; /* Ensure it's above other content */
    font-family: MS;
}
.header {
    font-family: Arial, sans-serif;
    background-color: #454b66;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
}
.body1 {
    font-family: Arial, sans-serif;
    background-color: #2b3047;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    width: 100%;
}
.body2 {
    font-family: Arial, sans-serif;
    background-color: #1d2030;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    width: 100%;
}
.body3 {
    font-family: Arial, sans-serif;
    background-color: #2c3147;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    width: 100%;
}
.footer {
    font-family: Arial, sans-serif;
    background-color: #292c42;
    color: #f4f4f4;
    margin: 0;
    padding: 20px 0;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}
.icon {
    /*display: inline-block;*/
    vertical-align: middle;
    float: right;
    width: 55px;
    height: auto;
    margin-right: 20px;
}
.tabs {
    float: right; 
    vertical-align: bottom;
    margin-right: 20px;
    font-size: 25px;
    text-decoration: none;
    color: #f4f4f4;
    margin-top: 15px;
}
.top-button {
    text-decoration: none; /* Remove underline */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.grey-hover:hover {
    filter: brightness(80%); /* Adjust brightness to make it light blue */
}

.full-width-image {
    width: 60%;
    overflow: hidden; /* Ensure the image doesn't overflow horizontally */
    filter: blur(2px);
    position: relative;
    margin-left: 20%;
}

.full-width-image img {
    width: 100%;
    position: absolute;
}

/* .profile_img {
    float: right; 
    margin: 0 auto; 
    margin-top: -25%; 
    margin-right: 200px; 
    width: 500px; 
    height: auto; 
    border-radius: 50%;
    border: 15px solid white;
} */

.profile_img {
    width: 20vw; /* Scale with viewport width */
    height: auto;
    border-radius: 50%;
    border: 1vw solid white; /* Scale border thickness with viewport width */
    position: absolute;
    top: 10vh;
    right: 5vw;
    margin-top: 45px; 
    max-width: 30vw; /* Ensure a maximum size */
    max-height: 30vw; /* Ensure a maximum size */
}

