*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background: #090629;
    color: #ebe5dd;
}
#header{
    width: 100%;
    height: 5vh;
    /*background-image: url(profile.png);
    background-size: cover;
    background-position: center;
    background-color: #b3005e;
    border-radius: 10px;*/
}
/******** NAVIGATION **********/
.container{
    padding: 10px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 140px;
    margin-left: -55px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: #ebe5dd;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #d468a7;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;/** time it takes to transition **/
}
nav ul li a:hover::after{
    width: 100%;
}
ul li ul.dropdown li{
    display: block;
}
ul li ul.dropdown {
    width: 200px;
    background: 100%;
    position: absolute;
    z-index: 999;
    display: none;
    line-height: 30px;
}
ul li:hover ul.dropdown{
    display: block;
}
nav .menudrop{
    margin-left: 5px;
    transform: translateY(5px);
}
@keyframes stickynav{
    100%{
        box-shadow: 0 0 0.75rem hsl(0 0% 0% / 0.3);
    }
}
.header-text{
    margin-top: 30%;
    width: 600px;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;*/
    font-size: 30px;
    margin-bottom: 10px;
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}
.header-text h1 span{
    color: #d468a7;
}
nav .fa-solid{
    display: none;
}
nav .material-symbols-outlined {
  font-variation-settings:'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24;
  display: none;
}
.header-pic{
    float: right;
    text-align: center;
    width: 500px;
    margin-top: -400px;
    margin-right: -60px;
    overflow: hidden;
}
.continue{
    display: block;
    margin: auto;
}
/******** ABOUT ME PAGE **********/ 
#about{
    margin-top: -80px;
    padding: 80px 0;
    color: #ebe5dd;
    padding: 10px;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
    padding-right: 10px;
}
.about-col-1 img{
    margin-top: 55%;
    width: 100%;
    border-radius: 15px;
}
.about-title{
    margin-top: 35%;
    font-size: 60px;
    font-weight: 600;
    color: #ebe5dd;
}
.about-col-2{
    flex-basis: 55%;
}
.about-para{
    font-size: 20px;
}
.tab-titles{
    display: flex;
    margin: 50px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 30px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #d468a7;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;/** time it takes to transition **/
}
.tab-links.active-link::after{
    width: 50%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
    font-size: 20px;
}
.tab-contents ul li span{
    color: #d468a7;
    padding-bottom: 10px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}
/******** PORTFOLIO PAGE **********/
#portfolio{
    padding: 50px 0;
}
.portfolio-title{
    margin-top: 5%;
    font-size: 60px;
    font-weight: 600;
    color: #ebe5dd;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px; 
    margin-top: 50px; 
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;/** time it takes to transition **/
}
.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(9, 6, 41, 0.6), #d468a7);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}
.layer h3{
    font-weight: 500;
    margin-bottom: 20px;
}
.layer a{
    margin-top: 20px;
    color: #d468a7;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #f5f3f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
}
.work:hover img{
    transform: scale(1.1);
}
.work:hover .layer{
    height: 100%;
}
/** button deleted **
.btn{
    display: block;
    margin: 50px, auto;
    width: fit-content;
    border: 1px solid #d468a7;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #171a19;
    transition: background 0.5s;}
.btn:hover{
    background: #d468a7;}
  button deleted */

/*** Tech Writing ***/
#tcom{
    width: 100%;
    padding: 50px 0;
}
.tcom-title{
    margin-top: 5%;
    margin-left: -10px;
    font-weight: 600;
}
.tcom-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 40px; 
    margin-top: 50px; 
}
.docs{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.docs img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;/** time it takes to transition **/
}
.doc{
    width: 100%;
    height: 0px;
    background: linear-gradient(rgba(6, 0, 71, 0.6), #d468a7);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}
.doc h3{
    font-weight: 500;
    margin-bottom: 20px;
}
.doc a{
    margin-top: 20px;
    color: #d468a7;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #ebe5dd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
}
.docs:hover img{
    transform: scale(1.1);
}
.docs:hover .doc{
    height: 60%;
}

/** Alation Page **/
.alationnav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.alationnav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
    position: relative;
}
.alationnav ul li a{
    color: #0f0a41;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
.alationnav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #d468a7;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;/** time it takes to transition **/
}
.alationnav ul li a:hover::after{
    width: 100%;
}
#alationbody{
    color: #0f0a41;
    background-color: #eeedeb;
}
.alationheading{
    margin-left: -900px;
}
.alation-title{
    margin-top: 7%;
    margin-left: 90px;
    margin-bottom: -80px;
}
.section-title{
    margin-bottom: 35px;
}
#alationdocs{
    padding: 50px 0;
    margin: 90px;
}
.alation-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px; 
    margin-top: 10px; 
}
h3{
    margin-top: 6px;
}
.info{
    padding: 9px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    opacity: 0;
    transform: translateY(150px);
    transition: all 1.5s ease;
    /**transition: opacity 920ms/* higher this num-longer time to appear* ease-in, background 0.5s, transform 0.5s;/** time it takes to transition **/;
}
.info a{
    color:#d468a7;
    margin-left: 5px;
}
#alationinfo{
    padding: 50px 0;
    margin: 90px;
}
.info.active{ /*appear, disappear, reappear on scrolls*/
    transform: translateY(0px);
    opacity: 1;
}
.info:hover{
    transform: translateY(-20px);
}
.info .thumbnail{
    width: 100%;
    border-radius: 10px;
    display: block;
}
.alationfooter{
    margin-top: 200px;
}
.alationcopyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    color: #0f0a41;
    font-weight: 300;
}
.alationcopyright i{
    color: #d468a7;
}

/*** Web Development ***/
.projects-title{
    margin-top: 7%;
    margin-left: 260px;
    margin-bottom: -80px;
}
#webdev{
    width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.slider{
    width: 800px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.slides{
    width: 500%;
    height: 500px;
    display: flex;
}
.slides input{
    display: none;
}
.slide{
    width: 20%;
    transition: 2s;
}
.slide img{
    width: 800px;
    height: 500px;
}

.navigation-auto{
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 460px;
}
.navigation-auto div{
    border: 2px solid #b3005e;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}
.navigation-auto div:not(:last-child){
    margin-right: 40px;
}
#radio1:checked ~ .navigation-auto .auto-btn1{
    background: #b3005e;
}
#radio2:checked ~ .navigation-auto .auto-btn2{
    background: #b3005e;
}
#radio3:checked ~ .navigation-auto .auto-btn3{
    background: #b3005e;
}

.navigation-manual{
    position: absolute;
    width: 800px;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}
.manual-btn{
    border: 2px solid #b3005e;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}
.manual-btn:not(:last-child){
    margin-right: 40px;
}
.manual-btn:hover{
    background: #b3005e;
}
#radio1:checked ~ .first{
    margin-left: 0;
}
#radio2:checked ~ .first{
    margin-left: -20%;
}
#radio3:checked ~ .first{
    margin-left: -40%;
}
/*end slides*/

/*web dev sections*/
.web-title{
    margin-bottom: -40px;
}
.web-title a{
    margin-top: 20px;
    color: #d468a7;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    width: 60px;
    height: 60px;
}
#examples{
    width: 80%;
    padding: 50px 0;
    margin: auto;
}
.first-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px; 
    margin-top: 50px; 
}
.description{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.description img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;/** time it takes to transition **/
}
.gradient{
    width: 100%;
    height: 0px;
    background: linear-gradient(rgba(9, 6, 41, 0.6), #d468a7);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}
.gradient h3{
    font-weight: 500;
    margin-bottom: 20px;
}
.description:hover img{
    transform: scale(1.1);
}
.description:hover .gradient{
    height: 60%;
}
/*end web dev sections*/

/*** Journalism ***/ 
#photojournalism{
    padding: 30px 0;
}
.journalism-title{
    margin-top: 8%;
    margin-left: 100px;
    font-weight: 600;
}
#top-row, #mid-row, #bottom-row{
    padding-top: 90px;
    padding-left: 75px;
    margin: 30px;
}
.journalism-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.items-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px; 
    margin-top: 5px; 
}
.journalism-col-1{
    flex-basis: 40%;
}
.journalism-col-1 img{
    width: 60%;
    border-radius: 10px;
}
.works-title{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ebe5dd;
}
.journalism-col-2{
    flex-basis: 55%;
}
#top-row, #bottom-row{
    border-radius: 10px;
    padding-right: 30px;
    height: 427px;
    transition: background 0.5s, transform 0.5s;/** time it takes to transition **/
}
#top-row:hover, #bottom-row:hover{
    transform: translateY(-20px);
    background: rgba(6, 0, 71, 0.4);
}
#mid-row{
    border-radius: 10px;
    height: 410px;
    transition: background 0.5s, transform 0.5s;/** time it takes to transition **/
}
#mid-row:hover{
    background: rgba(6, 0, 71, 0.4);
    transform: translateY(-20px);
}
.view-website{
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 50px;
    margin: 50px, auto;
    width: fit-content;
    border: 1px solid #b3005e;
    padding: 10px 40px;
    border-radius: 6px;
    text-decoration: none;
    color: #ebe5dd;
}
.view-website:hover{
    background: #b3005e;
}
/******** SERVICES PAGE **********/
#services{
    padding: 30px 0;
}
.services-title{
    margin-top: 7.3%;
    font-size: 60px;
    font-weight: 600;
    color: #ebe5dd;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px; 
    margin-top: 50px;
}
.services-list div{
    background: #0d0940;
    padding: 40px;
    font-size: 20px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;/** time it takes to transition **/
}
.services-list div img{
    display: block;
    margin-top: -20px;
    margin-left: auto;
    margin-right: auto;
}
.services-list div h2{
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 60px;
}
.services-list p{
    text-align: justify;
}
.services-list div:hover{
    background: #b3005e;
    transform: translateY(-10px);
}

/******** CONTACT PAGE **********/
.contact-title{
    margin-top: 36%;
    font-size: 60px;
    font-weight: 600;
    color: #ebe5dd;
}
.contact-left{
    flex-basis: 45%;
}
.contact-right{
    flex-basis: 50%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: #b3005e;
    margin-right: 5px;
    font-size: 25px;
}
.contact-left a{
    text-decoration: none;
    color: #ebe5dd;
}
.social-icons{
    margin-top: 50px;
    margin-bottom: 25px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 60px;
    color: #ebe5dd;
    display: inline-block;
    transition: transform 0.5s;/** moves icon up in 5secs **/
}
.social-icons a:hover{
    color: #b3005e;
    transform: translateY(-5px);/** moves icon up **/
}
.resume{
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 50px;
    margin: 50px, auto;
    width: fit-content;
    border: 1px solid #b3005e;
    padding: 10px 40px;
    border-radius: 6px;
    text-decoration: none;
    color: #ebe5dd;
    transition: background 0.5s;/** time it takes to transition **/
}
.resume:hover{
    background: #b3005e;
}
.send{
    display: block;
    margin-top: 30px;
    margin-bottom: 50px;
    background: #090629;
    margin: 50px, auto;
    width: fit-content;
    border: 1px solid #b3005e;
    padding: 10px 40px;
    border-radius: 6px;
    text-decoration: none;
    color: #ebe5dd;
    transition: background 0.5s;/** time it takes to transition **/
}
.send:hover{
    background: #b3005e;
}
.contact-right form{
    width: 100%;
    margin-top: 30%;
}
form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #ebe5dd;
    padding: 15px;
    margin: 15px 0;
    color: #171a19;
    font-size: 18px;
    border-radius: 6px;
}
form .send{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
h5{
    margin-top: 100px;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    color: #ebe5dd;
    font-weight: 300;
}
.copyright img{
    color: #d468a7;
    transform: translateY(2px);
}
.horizontal-line{
    width: 970px;
    margin: 15px auto 30px auto;
}


/******** CSS FOR SMALL SCREENS **********/

/**tablets**//**tablets**/
@media only screen and (min-width: 600px) and (max-width: 1030px){
    /*(max-width: 920px)*/
    nav .fa-regular{
        display: none;
    }
    #header{
        margin-top: -30px;
        background-image: url(bigsmallerbg.png);
    }
    .header-text{
        margin-top: 700px;
        margin-right: 100px;
        font-size: 46px;
    }
    .header-text h1{
        font-size: 60px;
    }
    .header-pic{
        margin-top: -650px;
        margin-right: 90px;
        text-align: center;
        width: 500px;
        height:400px;
        overflow: hidden;
    }
    .logo{
        margin-left: 2px;
        width: 160px;
        height: 80px;
    }
    nav .fa-solid{
        display: block;
        width: 70px;
        height: 70px;
        cursor: pointer;
    }
    nav ul{
        background: #b3005e;
        position: fixed;
        top: 0;
        right: -200px;/** small width is 200 so it will be hidden **/
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;/** time it takes to transition **/
    }
    nav ul li{
        display: block;
        margin: 30px;
    }
    nav ul li a{
        display: block;
        margin-top: 55px;
        margin-left: 5px;
        margin-bottom: -5px;
        font-size: 40px;
    }
    nav ul li a:hover::after{
        width: 50%;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
    nav ul ul{
        position: absolute;
        margin-top: -95px;
        right: 165px;
    }
    nav ul ul a{
        width: 165px;
        line-height: 35px;
    }
    nav .material-symbols-outlined{
        display: block;
        font-size: 50px;
        margin-top: -40px;
        margin-left: -40px;
        margin-bottom: -30px;
    }
    .container .dropdown{
        background: #b3005e;
        width: 345px;
        height: 300px;
        margin-top: 60px;
        margin-right: 25px;
        border-radius: 5px;
        transform: translateY(30px);
    }
    nav .menudrop{
        margin-left: -20px;
        transform: translateY(-30px);
    }
    .dropdown li a{
        margin-top: -50px;
        margin-bottom: 80px;
    }
    .sub-title{
        font-size: 40px;
    }
    .portfolio-title{
        font-size: 40px;
        margin-top: 20%;
    }
    .services-title{
        font-size: 40px;
        margin-top: 25.4%;
    }
    /*about*/
    .about-col-1{
        margin-top: -200px;
        margin-bottom: -120px;
        flex-basis: 100%;
    }
    .about-col-1 img{
        width: 50%;
    }
    .about-col-2{
        font-size: 26px;
        flex-basis: 100%;
    }
    .tab-links{
        font-size: 30px;
        margin-right: 20px;
    }
    .tab-contents ul li span{
        font-size: 30px;
    }

     /*portfolio*/
     #portfolio{
        max-width: 500px;
    }

    /*tcom*/
    .image{
        height: 690px;
    }

    /*alation*/
    .alationnav ul{
        color: #ebe5dd;
    }
    .alationnav ul li a{
        color: #ebe5dd;
        text-decoration: none;
        font-size: 26px;
        position: relative;
        margin-right: 70px;
    }
    .alationnav .material-symbols-outlined{
        display: block;
        font-size: 50px;
        margin-top: -40px;
        margin-left: -30px;
        
    }
    .alationnav ul ul{
        margin-right: 25px;
    }
    .alationnav .dropdown{
        background: #b3005e;
        height: 350px;
        border-radius: 9px;
    }
    .info{
        opacity: 0;
        transition: opacity 2s/* higher this num-longer time to appear*/ ease-in;
    }
    .info.appear{
        opacity: 1;
    }
    .info .thumbnail{
        height: 195px;
    }
    .alationfooter{
        margin-top: 200px;
    }
    .alationhorizontal-line{
        width: 600px;
        margin: 15px auto 30px auto;
    }
    .alationcopyright{
        font-size: 14px;
    }
    .alationcopyright i{
        color: #d468a7;
    }
    
    /*projects slide*/
    .projects-title{
        margin-top: 15%;
        margin-left: 120px;
        margin-bottom: -300px;
    }
    .slider{
        width: 450px;
        height: 300px;
        margin-bottom: -450px;
        border-radius: 10px;
        overflow: hidden;
    }
    .slides{
        width: 500%;
        height: 300px;
        display: flex;
    }
    .slide{
        width: 20%;
        transition: 2s;
    }
    .slide img{
        width: 450px;
        height: 260px;
    }
    .navigation-manual{
        position: absolute;
        width: 450px;
        margin-top: -60px;
        display: flex;
        justify-content: center;
    }
    .navigation-auto{
        position: absolute;
        display: flex;
        width: 800px;
        justify-content: center;
        margin-top: 240px;
        margin-left: -176px;
    }
    .web-title{
        margin-left: 80px;
        margin-top: 5px;
        font-size: 20px;
    }
    .first-list{
        margin-left: 80px;
        margin-right: 40px;
        position: relative;
        overflow: hidden;
    }
    .description img{
        width: 450px;
        height: 360px;
    }
    .gradient{
        width: 475px;
    }

    /*articls*/
    .journalism-title{
        margin-top: 90px;
        margin-left: 45px;
        margin-bottom: -70px;
    }
    #top-row, #bottom-row{
        margin-top: 110px;
        padding-left: 40px;
        height: 600px;
        transition: background 0.5s, transform 0.5s;/** time it takes to transition **/
    }
    #mid-row{
        margin-top: 110px;
        padding-left: 50px;
        height: 610px;
        transition: background 0.5s, transform 0.5s;/** time it takes to transition **/
    }
    #mid-row:hover{
        background: rgba(6, 0, 71, 0.4);
        transform: translateY(-20px);
    }
    .journalism-col-1 img{
        width: 80%;
        margin-top: -60px;
    }
    #mid-row h1{
        margin-top: -60px;
    }
    /*contact*/
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    h5{
        margin-top: 100px;
    }
    .horizontal-line{
        width: 600px;
        margin: 15px auto 30px auto;
    }
    .copyright{
        margin-left: 100px;
    }
}

/**cell phones**//**cell phones**/
@media only screen and (min-width: 200px) and (max-width: 590px){
    /*(max-width: 450px)*/
    nav .fa-regular{
        display: none;
    }
    #header{
        background-image: url(image/smallerbg.png);
    }
    .header-text{
        margin-top: 100%;
        font-size: 16px;
        overflow: hidden;
    }
    .header-text h1{
        font-size: 30px;
    }
    .logo{
        width: 100px;
        margin-left: 15px;
    }
    nav .fa-solid{
        display: block;
        margin-right: -200px;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    nav ul{
        background: #b3005e;
        position: fixed;
        top: 0;
        right: -200px;/** small width is 200 s0 it will be hidden **/
        width: 140px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;/** time it takes to transition **/
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul li a{
        display: block;
        margin-top: 35px;
        margin-bottom: -22px;
        font-size: 30px;
    }
    nav ul li a:hover::after{
        width: 50%;
    }
    .menudrop{
        position: absolute;
        top: 125px;
        left: -5px;
        cursor: pointer;
    }
    nav .material-symbols-outlined{
        display: block;
        margin-left: -25px;
        margin-bottom: -25px;
    }
    nav ul ul{
        position: absolute;
        right: 110px;
        line-height: -100px;
    }
    .container .dropdown{
        background: #b3005e;
        margin-top: 90px;
        margin-right: 30px;
        width: 300px;
        height: 250px;
        border-radius: 5px;
    }
    .dropdown li a{
        margin-top: -55px;
        margin-bottom: 80px;
    }
    .sub-title{
        font-size: 40px;
    }
    .portfolio-title{
        font-size: 40px;
        margin-top: 20%;
        margin-left: -50px;
    }
    .header-text p{
        font-size: 27px;
    }
    .header-text h1{
        font-size: 40px;
        margin-bottom: 40px;
    }
    .header-pic{
        margin-right: -190px;
        width: 100%;
        transform: translateY(-110px);
    }
    .work{
        margin-left: -50px;
        margin-right: -50px;
    }
    .work img{
        width: 350px;
        height: 250px;
    }
    .layer{
        overflow: hidden;
    }

    /*about*/
    .continue{
        margin-top: 10px;
    }
    .about-col-1{
        display: none;
        /*margin-top: -10px;
        margin-bottom: -90px;
        flex-basis: 75%;*/
    }
    .about-col-2{
        flex-basis: 100%;
        width: 800px;
    }
    .about-title{
        font-size: 50px;
        margin-top: 120px;
    }
    .about-para{
        font-size: 30px;
        width: 500px;
    }
    .tab-links{
        font-size: 35px;
        margin-right: 20px;
    }
    .tab-contents ul li span{
        font-size: 35px;
    }
    .tab-contents ul li{
        font-size: 25px;
    }

    /*skills*/
    .services-title{
        font-size: 40px;
        margin-top: 25.4%;
    }
    .services-list{
        width: 485px;
        margin-left: 30px;
    }
    .skillspara{
        font-size: 35px;
    }

    /*contact*/
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .social-icons a{
        margin-right: 45px;
    }
    h5{
        margin-top: 30px;
        font-size: 10px;
    }
    .horizontal-line{
        width: 300px;
        margin: 5px auto 25px auto;
    }
    .copyright{
        font-size: 12px;
    }

    /*tcom*/
    #tcom{
        margin-left: -50px;
        margin-right: -90px;
    }
    .tcom-list{
        width: 350px;
    }
    .image{
        height: 450px;
    }
  
    /*alation*/
    #alationbody{
        color: #0f0a41;
        background-color: #eeedeb;
    }
    .alationnav .fa-xmark{
        margin-top: -320px;
        margin-left: 20px;
    }
    .alationnav ul{
        color: #ebe5dd;
        width: 110px;
    }
    .alationnav ul li a{
        color: #ebe5dd;
        font-size: 16px;
        margin-bottom: -21px;
    }
    .alationnav .material-symbols-outlined{
        width: 15px;
        margin-left: -25px;
    }
    .alationnav ul ul{
        margin-right: -35px;
    }
    .alationnav ul ul a{
        margin-top: 10px;
        margin-left: 2px;
        margin-bottom: 20px;
    }
    .alationnav .dropdown{
        background: #b3005e;
        width: 150px;
        height: 245px;
        margin-top: 15px;
        border-radius: 5px;
    }
    .info{
        opacity: 0;
        transition: opacity 2s/* higher this num-longer time to appear*/ ease-in;
    }
    .info.appear{
        opacity: 1;
    }
    .info .thumbnail{
        height: 180px;
    }
    .alationfooter{
        margin-top: 130px;
    }
    .alationhorizontal-line{
        width: 190px;
        margin: 10px auto 25px auto;
    }
    .alationcopyright{
        font-size: 12px;
    }
    .alationcopyright i{
        color: #d468a7;
    }
    
    /*projects slide*/
    .projects-title{
        margin-top: 15%;
        margin-left: 20px;
        margin-bottom: -90%;
    }
    .slider{
        width: 450px;
        height: 300px;
        margin-top: 505px;
        margin-bottom: 200px;
        border-radius: 10px;
    }
    .slides{
        width: 500%;
        height: 300px;
        display: flex;
    }
    .slide{
        width: 20%;
        transition: 2s;
    }
    .slide img{
        width: 400px;
        height: 260px;
    }
    .navigation-manual{
        position: absolute;
        width: 450px;
        margin-top: -60px;
        display: flex;
        justify-content: center;
    }
    .navigation-auto{
        position: absolute;
        display: flex;
        width: 800px;
        justify-content: center;
        margin-top: 240px;
        margin-left: -176px;
    }
    .web-title{
        padding-top: 80px;
        margin-left: -20px;
        font-size: 18px;
    }
    .first-list{
        margin-left: -10px;
        margin-right: -20px;
        position: relative;
        overflow: hidden;
    }
    .description img{
        width: 350px;
        height: 250px;
    }
    .gradient{
        width: 100%;
    }
    #examples{
        margin-top: -170px;
    }

    /*articls*/
    .journalism-title{
        margin-left: -5px;
    }
    #top-row, #bottom-row{
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 40px;
        height: 550px;
        transition: background 0.5s, transform 0.5s;/** time it takes to transition **/
    }
    #top-row:hover, #bottom-row:hover{
        transform: translateY(-20px);
        background: rgba(6, 0, 71, 0.4);
    }
    #mid-row{
        margin-top: 20px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 40px;
        height: 500px;
        transition: background 0.5s, transform 0.5s;/** time it takes to transition **/
    }
    #mid-row:hover{
        background: rgba(6, 0, 71, 0.4);
        transform: translateY(-20px);
    }
    .journalism-col-1 img{
        width: 250px;
        margin-top: -60px;
    }
    #mid-row h1{
        margin-top: -60px;
    }
    /*footer*/
    .copyright{
        margin-left: 100px;
    }

    #top-row, #bottom-row{
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 40px;
        height: 550px;
        transition: background 0.5s, transform 0.5s;/** time it takes to transition **/
    }
};