body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
}
.profilepic-container {
    position: relative;
}
.profilepic {
    border-radius: 50%;
}
@keyframes animatedBackground {
    0% {
        background-position: 0 0; /* Initial position */
    }
    100% {
        background-position: 100% 100%; /* Final position */
    }
}
.wavy-background {
    position: fixed; /* Fix the background in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure it is behind other content */
    background-color: #222831;
    opacity: 0.8;
    background-image: 
    repeating-radial-gradient(circle at 0 0, transparent 0, #222831 10px),
    repeating-linear-gradient(#31363F, #222831);
    background-size: 200% 200%;
    animation: animatedBackground 120s infinite;
}
.socialmedia {
    margin: auto;    
    display: block;
}
.svg {
    display: flex;
    justify-content: center;
}

/* Credit to benjamin knight for the Divider Headings! */
.divider {
    display: flex;
}

.divider:before,
.divider:after {
    content: "";
    flex: 1;
}

.line {
    align-items: center;
}

.line:before,
.line:after {
    height: 1px;
    margin: 0;
}

.glow:before,
.glow:after {
    height: 6px;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    border-radius: 5px;
}

.glow:before {
    background: linear-gradient(to right, blue, hotpink);
}

.glow:after {
    background: linear-gradient(to left, blue, hotpink);
}

.glow {
    color: #EEEEEE;
}
.projects-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #EEEEEE;
}
.project-item {
    height: 200px;
    background-color: #EEEEEE;
    position: relative;
    display: flex;
    justify-content: center;
}

.projectsvg {
    height: 80px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10%);
}
.project-item-title {
    align-self: center;
    padding-top: 70px;
    text-align: center;
}
#title {
    height: 100vh;
}

.oswald-custom {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: .14em;
}
.title-text {
    background: linear-gradient(to left, blue, hotpink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
#jakee {
    font-style: italic;
}
.projects-row {
    display: flex;
    justify-content: center;
    --bs-gutter-x: 10em;
}

@media (max-width: 768px) {
    .project-item {
        margin-bottom: 1em;
        width: 90%;
    }
    .projects-row {
        margin: 0em 0em;
    }
    .text-center {
        display: grid;
        grid-template-rows: 1fr auto auto;
    }
    
}