.back{
    display : flex;
    justify-content : center;
    align-items : center;
    gap : 3px;
    margin-right : 20px;
    cursor : pointer;
    padding : 5px 20px;
    background-color : rgba(255, 255, 255, 0.104);
    border-radius : 200px;
    border-top : solid 1px rgba(255, 255, 255, 0.349);
    border-bottom : solid 1px rgba(255, 255, 255, 0.342);
    backdrop-filter : blur(6px);
    transition : all 0.4s ease;
    color : white;
    font-size : 130%;
}

.back:hover{
    background-color : rgba(255, 255, 255, 0.204);
    border-top : solid 1px rgba(255, 255, 255, 0.449);
    border-bottom : solid 1px rgba(255, 255, 255, 0.442);
}
.back p{
    color : #fff;
    font-size : 55%;
}
*{
    margin : 0px;
    padding : 0px;
    box-sizing: border-box;
    font-family : 'inter', sans-serif;
}
body{
    height : 100vh;
    overflow-x : hidden;
    overflow-y : hidden;
    background-color : #0c0c0c;
    background-image : url("../../../images/video-editing-portfolio-pictures/background\ lines.svg");
    background-size : cover;
    background-position : center;
    background-repeat : no-repeat;
}
.everything{
    display : flex;
    flex-direction : column;
    justify-content : center;
    align-items : center;
    position : relative;
    height: 100vh;
    gap : 40px;
    padding: 20px 10px 40px;
    margin-top: 0;
}
.circle1 {
    background-color: #ff2a003c;
    height: 740px;
    width: 740px;
    border-radius: 1000px;
    filter: blur(350px);
    position: fixed;
    left: -180px;
    bottom: -470px;
    z-index: -1;
    opacity: 68%;
}

.circle2 {
    background-color: #dc000078;
    height: 740px;
    width: 740px;
    border-radius: 1000px;
    filter: blur(350px);
    position: fixed;
    right: -180px;
    top: -250px;
    z-index: -1;
    opacity: 48%;
}
a{
    text-decoration : none;
}
.heading{
    color : white;
    font-size : 350%;
    font-weight : 800;
    margin-left : 20px;
    margin-top : 20px;
    letter-spacing : -3px;
}
.subheading{
    color : white;
    font-size : 100%;
    font-weight : 400;
    margin-left : 30px;
    letter-spacing : -1px;
}
.two-websites{
    display : flex;
    gap : 20px;
    flex-wrap : wrap;
    justify-content : center;
    width: 100%;
}
.left-one,
.right-one{
    width : clamp(360px, 90vw, 720px);
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height : auto;
    background-size : cover;
    background-position : center;
    background-repeat : no-repeat;
    border-radius : 16px;
    transition : all 0.5s ease;
}
.left-one{
    background-image : url("../../../images/web-development-portfolio-picture/ismail\ website\ screenshot.png");
}
.right-one{
    background-image : url("../../../images/web-development-portfolio-picture/az\ voyage\ website\ screenshot.png");
}
.right-one:hover , .left-one:hover{
    transform : scale(1.03);
    box-shadow : 0px 0px 20px #450c006e;
}
.right-one , .left-one{
    display : flex;
    flex-direction : column;
    justify-content : flex-end;
    align-items : flex-start;
    padding : 20px 20px;
    position : relative;
}
.tags{
    display : flex;
    gap : 10px;
    margin-bottom : 10px;
    width : 20%;
    flex-wrap : wrap;
}
.tag{
    border : solid 1px ;
    padding : 1px 5px;
    border-radius : 5px;
    font-size : 60%;
    opacity : 60%;
}
.right-one .tags .tag{
    border-color : #1e1e1e;
    color : #1e1e1e;
}
.left-one .tags .tag{
    border-color : #ffffff;
    color : #ffffff;
}

span{
    color : #ff2a00;
}
.left-one{
    display : none;
}

@media (max-width: 1200px) {
    .heading{
        font-size: 300%;
        margin-left: 0;
    }
    .subheading{
        font-size: 95%;
        margin-left: 0;
        width: 90%;
    }
    .two-websites{
        gap: 18px;
    }
    .everything{
        height: 100vh;
        overflow-y : hidden;
        justify-content: center;
    }

}

@media (max-width: 900px) {
    .heading{
        font-size: 260%;
    }
    .subheading{
        font-size: 90%;
        width: 88%;
    }
    .two-websites{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .everything{
        height: 100vh;
        justify-content: center;
        overflow-y : hidden;
    }
}

@media (max-width: 700px) {
    .heading{
        font-size: 220%;
        letter-spacing: -2px;
    }
    .subheading{
        font-size: 85%;
        width: 100%;
        letter-spacing: 0;
    }
    .everything{
        height: 100vh;
        justify-content: center;
        overflow-y : hidden;
    }
}

@media (max-width: 500px) {
    body{
        background-position: top center;
    }
    .heading{
        font-size: 180%;
    }
    .subheading{
        font-size: 80%;
        width: 100%;
    }
    .everything{
        height: 100vh;
        overflow-y : hidden;
        justify-content: center;
        margin-top: 0;
        gap: 30px;
        padding-top: 30px;
    }
    .back{
        margin-right: 0;
        padding: 8px 16px;
        font-size: 110%;
    }
}
