body {
    height: 100vh;
    width: 100vh;
    margin: 0;
    background-color: black;
    overflow: hidden;
}

h1{
    font-family: "Rubik", sans-serif;
    color: honeydew;
    font-weight: 900;
    font-size: 20px;
    margin: 10px;
}

p{
    font-family: "Rubik", sans-serif;
    color: honeydew;
    font-weight: 300;
    font-size: 15px;
    margin: 10px;
}
image{
    user-select: none;
}

#websites {
    display: flex;
    gap: 20px;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translate(0%, -50%);
}

/*Container*/
.image-container,#ContentContainer,.parallax_image {
    position: relative;
    width: 40vmin;
    min-width: 200px;
    height: 56vmin;
    min-height: 300px;
}
#ContentContainer {
    object-fit: cover;
    background-color: #01050d;
    display: flex;
    flex-direction: column;
}
.parallax_image{
    width: 40vmin;
    height: 56vmin;
    object-fit: cover;
    object-position: 100% 50%;
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 100;
}
.image-container:hover .info-overlay {
    opacity: 1;
}

#AuthenticateButton{
    position: absolute;
    right: 10px;
    bottom: 5px;
    height: 40px;
    width: 40px;
    border: 2px solid gray;
    border-radius: 10px;
    background: transparent;
    padding: 0;
}

/* Profile Banner */
.profile-banner {
    width: 100%;
    height: 25%;
    background-image: url('../images/Blue-Background.webp');
    background-size: cover;
    background-position: center;
}

/* Profile Picture */
.profile-picture {
    width: 15vmin;
    min-width: 80px;
    height: 15vmin;
    min-height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 8%;
    left: 2%;
    border: 3px solid white;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Section */
.content-section {
    margin-top: 15%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding: 10px;
    bottom: 0;
    border-top: solid whitesmoke 2px;
}

.social-links img {
    width: 24px;
    height: 24px;
}