.infoContainer {
    display: grid;
    justify-content: center;
    position: relative;
    top: 100px;
}

.profile {
    display: grid;
    justify-content: center;
    position: relative;
    top: 100px;
}

.moreinfoContainer {
    background-color: rgba(55, 55, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 36px;
    border-radius: 10px;
    margin-top: 40px;
    width: 650px;
    /* backdrop-filter: blur(5px); */
}

.infoConProfileCard {
    display: flex;
    column-gap: 20px;
    height: 250px;
}

.aboutme {
    width: 500px;
    height: 200px;
}

.profilepic {
    width: 200px;
    height: 200px;
    border-radius: 100%;
}

.socialButtons {
    display: flex;
    background-color: rgba(255, 255, 255, 0);
    height: 50px;
    width: 100%;
    align-items: center;
}

.socialButton {
    transition: 0.2s;
    border: none;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0);
    font-size: 16px;
    cursor: pointer;

    height: 50px;
    width: 50px;
}

.socialButton img {
    transition: 0.1s;
    height: 30px;
    width: 30px;
}

.socialButton:hover {
    transition: 0.1s;
    height: 60px;
    width: 60px;
}

.socialButton:hover img {
    transition: 0.1s;
    height: 40px;
    width: 40px;
}

.navbar {
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.navButton {
    font-size: 18px;
    font-weight: 500;

    color: #e1e1e1;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;

    background-color: rgba(255, 255, 255, 0);

    padding: 8px 15px;
}

.navButton:focus,
.navButton:hover {
    color: #fff;
}

.navButton:focus:after,
.navButton:hover:after {
    width: 100%;
    left: 0%;
}

.navButton:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

.moreSection {
    display: grid;
    justify-content: center;
    position: relative;
    top: 100px;
}

.gallerySection {
    display: grid;
    justify-content: center;
    position: relative;
    top: 100px;
}
