body{
    background-image: url("images/background.png");
    background-size: cover;
    font-family: 'Playfair Display';
}
.header{
    position: fixed;
    font-size: 1.2rem;
    top: 0;
    left: 0;
    gap: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}
.logo{
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    color: black;
    text-decoration: none;
    border: 2px solid black;
    padding: 10px 20px;
}
.name{
    font-size: 60px;
    font-weight: bold;
    color: black;
    margin: 0;
}
.nav{
    width: 100%;
    display: flex;
    gap: 20px;
}
.nav a{
    text-decoration: none;
    font-size: 1.2rem;
    color: black;
    font-weight: bold;
    transition: color 0.3s;
}
.nav a:hover{
    color: gray;
}
.content{
    margin-top: 150px;
    padding: 20px;
}
.profile-pic img{
    max-width: 75%;
    max-height: 75%;
    border-radius: 50%;
    object-fit: cover;
}
.home{
    margin-top: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 20px;
}
.bubble{
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.454);
    backdrop-filter:  blur(10px);
    --webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    max-width: 60%;
}
.social-bar{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-right: 100px;
}
.social-bar i{
    color: black;
    font-size: 1.8rem;
    text-decoration: none;
}
.social-bar a:hover{
    color: gray;
    transform: scale(1.2);
}
.intro-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 60%;
    gap: 20px;
    margin-bottom: 20px;
}
.intro .about-me{
    width: 400px;
    height: auto;
}

.email {
    margin: 0;
}
#education-bubble{
    max-width: 600px;
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 20px;
}
#about-experience-bubble{
    max-width: 600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.experience-about{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
}
.education{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
}
.allenSchool{
    max-width: 400px;
    max-height: 500px;
}
.avenudub{
    max-width: 400px;
    max-height: 400px;
}
.about{
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.resume{
    text-decoration: none;
    color: black;
    font-weight: bold;
    border: 2px solid black;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.resume:hover{
    color: #1a998e;
    border: 2px solid #1a998e;
}
.projects{
    margin-top: 200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.avenudub-logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.avenudub-picture{
    max-width: 150px;
    max-height: 150px;
}
#project-bubble{
    width: 300px;
}
.experience{
    margin-top: 200px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.experience-picture{
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
#experience-bubble{
    width: 800px;
}
#tech-stack{
    font-weight: bold;
    font-size: 1.2rem;
}
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1rem;
}
#open-sidebar-button, #close-sidebar-button{
    display: none;
    background: none;
    border: none;
    font-size: 3.0rem;
    cursor: pointer;
    color: black;
}
#overlay{
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    inset: 0;
    z-index: 5;
    display: none;
    transition: left 0.5s ease-in-out;
}
@media (max-width: 700px){
    .header{
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .experience, .about{
        margin-top: 50px;
    }
    .projects{
        margin-top: 50px;
        margin-bottom: 300px;
    }
    .home{
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin-top: 50px;
        align-items: center;
        align-content: center;
    }
    .intro, .about-me {
        width: 80vw;
        max-width: 90%;
        height: auto;
    }
    .intro-container {
        width: 80vw;
        max-width: 90%;
    }
    .profile-pic{
        width: 75%;
        height: auto;
        align-items: center;
        margin-left: 90px;
    }
    .name{
        font-size: 40px;
    }
    #open-sidebar-button, #close-sidebar-button{
        display: block;
    }
    .header{
       position: fixed;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       top: 0;
       left: -100%;
       height: 100vh;
       width: min(15em, 100%);
       z-index: 10;
       background-color: white;
       border-left: 1px solid black;
       transition: left 0.3s ease-in-out;
    }
    .header.show{
        left: 0;
    }
    .header.show ~ #overlay{
        display: block;
    }
    .nav{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 1.5em;
    }
    .social-bar{
        flex-direction: column;
        margin-left: 50px;
    }
    #about-experience-bubble{
        flex-direction: column;
    }
}

.glass-card{
    background: white;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.454);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    margin: 20px auto;
    text-align: center;
}
