* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
   background-color: silver;
   max-width: 100%;
}

nav {
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
}

ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: end;
    align-items: end;
    flex-basis: 80%;
    color: white;
    gap: 60px;
    font-size: 25px;
    padding-right: 30px;
}
nav ul a {
    text-decoration: none;
    color: white;
}
.logo {
    display: flex;
    flex-direction: row;
    width: 20%;
    align-items: center;
    padding-left: 100px;
    font-size: 35px;
}

.span-hover {
    color: gold;
    font-weight: 1000;
}

.home-color {
    color: goldenrod;
}

nav ul a:hover {
    color: gold;
    transition: .7s;
    font-size: larger;
}

.section-hero {
    margin-top: 150px;
}

.section-hero {
    display: flex;
    flex-direction: row;
    flex-basis: 100%;
    /* background-color: purple; */
    justify-content: space-between;
    align-items: center;

}

.hero-info {
    display: flex;
    flex-direction: column;
    padding-left: 100px;
    gap: 15px;
}



.email-behance {
    display: flex;
}


.cv-hire-btn {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.download-link{
    border: 3px solid gold;
    background-color: gold;
    color: black;
    padding: 5px;
    text-decoration: none;
    border-radius: 30px;
}

.hire-link {
    border: 3px solid black;
    background-color: black;
    color: gold;
    padding: 5px;
    text-decoration: none;
    border-radius: 30px;
}

.full-stack {
    color: gold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.email-behance {
    display: flex;
    flex-direction: row;
    gap: 70px;
}

.download-link:hover {
    color: gold;
    background-color: black;
    font-size: large;
    transition: .5s;
}

.hire-link:hover {
    color: black;
    background-color: gold;
    font-size: large;
    transition: .5s;
}

.hero-image  img {
    width: ;
    /* max-width: 700px; */
    height: 500px;
}

.hero-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 60%;
    /* border: 1px solid green; */
    margin-right: 70px;
    /* padding-left: 700px;
    position: relative;
    text-align: center;
    overflow: hidden; */
    /* margin-bottom: 20px; */
}

.liquid-shape {
    position: absolute;
    width: 35%;
    height: 70%;
    z-index: -1;
    top: 35%;
    overflow: hidden;
}

@media all and (max-width: 740px) {
    *{
        
    }
    body {
     width: 100%;
     background-color: red;
     padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    nav {
        width: 100%;
        min-height: 100px;
        display: block;
        position: fixed;
    }
    ul {
        width: 100%;
        min-height: 100px;
        display: block;
        text-align: center;
    }

    .section-hero {
        width: 100%;
        min-height: 200px;
        display: block;
        margin-top: 250px;
    }
    .hero-image {
        display: block;
        text-align: center;
    }

    /* .email-behance{ 
        display: block;
    max-width: 100%;
    }*/

   /* .block { 
    display: block;
    width: 100%;
   }*/

  }
  
  @media all and (max-width: 330px) {
  
  body {
    max-width: 100%;
    background-color: blue;
    padding: 0;
       margin: 0;
       box-sizing: border-box;
   }
   .hire-link {
    display: block;
    max-width: 100%;
   }
   .download-link {
    display: block;
    max-width: 100%;
   }
   .email {
    display: block;
    max-width: 100%;
   }
   .behance {
    display: block;
    max-width: 100%;
   }
   nav {
       width: 100%;
       min-height: 100px;
       display: block;
       position: fixed;
   }
   ul {
       width: 100%;
       min-height: 100px;
       display: block;
       text-align: center;
   }

   .section-hero {
       width: 100%;
       min-height: 200px;
       display: block;
       margin-top: 250px;
   }
   .hero-image {
       display: block;
       text-align: center;
   }

  .block {
   display: block;
   width: 100%;
  }

 }