* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    /*background: #f0f2f5;*/
    background: gray;
    color: #333;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 9%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.hamburger{
    display: none;
    width:20px;
    height:20px;
    flex-direction: column;
    cursor: pointer;
}
.hamburger .list {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 4px 0;
}
.close{
    display: none;
    margin-right: 20px;
    flex-direction: column;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}
.close.active {
    display: block;
}
.hamburger.hide {
    display: none;
}
.content.active {
    display: flex; /* Or block, depending on your layout */
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 1.5rem;
    gap: 1.5rem;
}
.navbar .name h1{
    font-size: 36px;
    font-family: "Calibri Light" , sans-serif;
    cursor: pointer;
}
.navbar .content a {
    margin: 0 15px;
    text-decoration: none;

    color: #333;
    font-weight: 600;
}
.navbar nav a:hover {
    color: #0073e6;
}
.content a{
    cursor: pointer;
}
.social-icons{
    width: 100px;
    display: flex;
    justify-content: space-around;

}
.social-link {
    color: #333;
    margin-left: 15px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}
.social-link:hover {
    color: #0073e6;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}
.container {
    margin: 8%;
    width:100vw;
    height:100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.projects{
    width: 100vw;
    height:90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide{
    width: 100%;
   height: inherit;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.iframe{
    width: 100%;
    height:inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.iframe iframe{
    width: 60vw;
    height:80vh;
    border: none;
    outline: none;
    overflow: hidden;
}
.about{
    width: 80%;
    height: 200px;
    background: rgb(255, 255, 255, 0.5);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.about button{
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background: #0073e6;
}
.buttons{
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 5px;

}
.buttons button{
    width: 30px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
@media screen and (max-width: 1121px) {
    .content {
        display:none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    .hamburger {
        display:block;
    }



}

@media screen and (max-width: 860px) {

}

@media screen and (max-width:500px){
    .navbar .name h1{
        font-size: 20px;
    }

}
@media screen and (max-width: 351px) {
    .navbar .name h1 {
        font-size: 20px;
    }
    .slider{
        margin-top: 25%;
        height: 95vh;
    }

}