
body {
    background-color: lightgray;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    transition: transform 0.5s ease;

}


.main-header {
    display:flex;
    gap:20px;
    justify-content: space-between;
    align-items: center;
    background-color: #ded9e6;
    height:18svh;
    width:100%;
}

.main-header .name {
    margin: 0 0 0 35px;
    font-size: 6svh;
    background: linear-gradient(to right, #4700b3,#660029, #bf4080);
    background-clip:text;
    -webkit-background-clip : text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;

}

@media (max-width:820px) {
    
.main-header .name {
    font-size: 4svh; 
}
}


.main-header nav a{
    text-decoration: none;
    margin:0 15px 0 15px;
    color: #737373;
    font-size: 3svh;
}

.main-header nav a:hover {
    color:#262626;
    border-radius:6px;
    background: linear-gradient(to right, #4700b3,#24248f, #bf4080);
}

.main-header .nav-color {
    background-color: rgb(199, 39, 39);
    color:rgb(13, 11, 11);
    border-radius: 4px;
    width:50px;
    font-weight: bolder;
}


/* Section Styling*/

.top-section {
    display:flex;
    justify-content:center;
    background-color: #3d3de0;
    flex-wrap:wrap;
    margin:25px 0 0 0;
}

.left-section{
    margin:0 0 30px 0;
}


@media (max-width:820px){
    .left-section{
        text-align: center;
    }
}


.left-section h3 {
    color:white;
    font-size: 5svh;
}

.left-section p {
    color:rgb(232, 226, 226);
    font-weight: bold;
}

.left-section .btn-view-work a {
    text-decoration: none;
    color:black;
}

.left-section .btn-view-work{
    height:7svh;
    width:20svh;
    border-radius: 20px;
    font-size:15px;
    font-weight:bold;
    background:linear-gradient(to right, #ff0000,#4d0000);
    transition: transform 0.5s ease;
    
}

.left-section .btn-view-work:hover{
    transform:translateY(-15px);
}

.left-section .btn-in-touch a {
    color:white;
    text-decoration:none;
}


.left-section .btn-in-touch {
    background-color: #3d3de0;
    color:white;
    height:7svh;
    width:20svh;
    border:2px solid white;
    border-radius:20px;
    font-size:18px;
}

.left-section .btn-in-touch:hover {
    background-color: #e6e6ff;
    font-weight: bold;
    width: 23svh;
}

.bg-text {
    background-color: #3d3de0;
    height:40svh;
    width:58svh;
    border:2px solid white;
    margin:30px 40px 50px 40px;
    display:inline-block;
    text-align: center;
    color:white;
    font-weight: bolder;
    border-radius:20%;
}

.bg-text img{
    height:170px;
    width:150px;
    margin: 20px 0 0 0;
    border-radius:45%;
    transition: transform 0.5s ease;
}

.bg-text img:hover {
    transform: translateY(10px);
}


@media (max-width:820px){
    .bg-text {
        width:40svh;
}
}



/*'''ABOUT SECTION'''*/


.about-me-text{
    background-color:#b3b3b3;
    margin:-25px 0 0 0;
}

.about-me-text h4 {
    font-size: 7svh;
    text-align: center;
    padding-top:20px;
}


.about-section{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about-section .about-text h3 {
    font-weight: bold;
    font-size: 4svh;
}

.about-section .about-text p {
    font-weight: bold;
    color:white;
    line-height: 30px;
}

.about-section .about-img img{
    border-radius:15%;
    height:390px;
    width:250px;
}

.about-section .about-text {
    margin:0 0 0 25px;
}


/*'''SKILLS SECTION'''*/

.skills-header h4 {
    font-size: 7svh;
    text-align: center;
    padding-top:20px;
}

.skills-section {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.skills-section div{
    background-color: white;
    border:2px solid white;
    margin:0 15px 15px 0;
    text-align: center;
    border-radius: 20px;
    padding: 0 10px 20px 10px;
    border-top: 4px solid blue;
    transition:transform 0.5s ease;

}

.skills-section div img{
    margin:10px 0 0 0;
    width:100px;
    height:70px;
    border-radius: 30%;
}

.skills-section div:hover {
    transform:translateY(-25px);
}


/*''''WORK SECTION''''*/

.mywork-text{
    background:linear-gradient(to right,rgb(215, 176, 101), #d9d9d9, whitesmoke, lightgrey, rgb(215, 176, 101) )
}


.mywork-text h4{
    font-size: 7svh;
    text-align: center;
    padding-top:20px;
}

.mywork-section{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
}

.mywork-section h3 a {
    color:black;
    text-decoration: none;
    font-size: 3svh;
    font-weight:bolder;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.mywork-section .section{
    margin:10px 15px 0 0;
    background-color: white;
    border:2px solid white;
    border-radius: 20px;
    padding:0 0 20px 0;
    transition: transform 0.5s ease;

}

.mywork-section .section:hover {
    transform: translateX(10px);
}

.mywork-section img{
    width:65px;
    height:70px;
    border-radius: 50%;
}

.mywork-section .info {
    background-color: #3d3de0;
    color:white;
    border-radius: 10px;
    padding: 5px 5px 5px 5px;
    margin-left:15px;
}
.mywork-section .info a{
    color:white;
    text-decoration: none;
}

.section div {
    background:linear-gradient(to right,#4700b3,#ffa500, #bf4080);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    display:flex;
    margin:0;
    justify-content: center;
    align-items: center;
    height:20svh;
}

.section h3 {
    padding:8px 20px 0 10px;
}

.section p {
    padding:8px 20px 0 10px;
}


.intouch-left{
    display:flex;
    vertical-align: middle;
    align-items:center;
}


.contact-text{
    background: linear-gradient(to right,#000066, #1a1aff, #000099);
    color:white;
}

.contact-text h2{
    font-size: 6svh;
    text-align: center;
    padding-top:20px;
}

.contact {
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
}

.intouch-left img {
    margin: 0 10px 0 0;
    width:6svh;
    height:6svh;
    border-radius: 30%;
}

.intouch-left h4 span {
    font-weight: lighter;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.contact-right {
    background-color: #6666ff;
    border-radius: 25px;
    padding: 30px 25px 0 25px;
    margin: 0 35px 80px 35px;
}

.contact-right input {
    width:45svh;
    height:6svh;
    border-radius: 12px;
    background-color:#000099;
    color:white;
    border:1px solid whitesmoke;
}

.contact textarea{
    width:45svh;
    height:14svh;
    border-radius: 12px;
    background-color:#000099;
    color:white;
    border:1px solid whitesmoke;
}

.contact .btn-input {
    width:50svh;
    height:6svh;
    border-radius: 15%;
    color:white;
    background:linear-gradient(to right,#e60000,#4700b3,#ffa500,#660029, #bf4080);
    margin: 8px 0 30px 0;
    transition: transform 0.5s ease;

}

.contact .btn-input:hover {
    transform: translateY(-8px);
    background:linear-gradient(#4700b3,#660029, #bf4080);
}

.contact-right label {
    font-size: 17px;
    padding-top: 20px;
}


@media (max-width:820px){



.contact-right {
    background-color: #6666ff;
    border-radius: 25px;
    padding: 30px 2px 0 2px;
    width:40svh;
}

.contact-right input {
    width:38svh;
}

.contact textarea{
    width:38svh;
}

.contact .btn-input {
    width:38svh;
}

}


/*'''FOOTER SECTION'''*/


.footer {
    background-color: #00001a;
    color:white;
    display:block;
    height:35svh;
}

@media (max-width:820px){
    .footer{
        height:42svh;
    }
}

.footer .footer-img {
    margin:15px 0 15px 0;
    display:flex;
    justify-content: center;
    padding: 20px 0 20px 0;
    flex-wrap: wrap;

}

.footer .footer-img img {
    width:8svh;
    height:8svh;
    border-radius:50%;
    margin: 0 7px 15px 0;
    transition:transform 0.5s ease;
}

.footer .footer-img img:hover{
    transform: scale(1.2);
}

.footer .footer-text{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
}


.footer-text .bottom-text {
    font-size: 20px;
}

.footer-text .bottom-text a {
    text-decoration: none;
    color:rebeccapurple;
}

.footer-text .bottom-text a:hover {
    background: linear-gradient(to right, #4700b3,#660029, #bf4080);
    background-clip:text;
    -webkit-background-clip : text;
    -webkit-text-fill-color: transparent;


}