 * {
     margin: 0;
     padding: 0;
 }

 body {
     background-color: rgb(0, 0, 33);
     color: white;
     font-family: 'Poppins', sans-serif;
 }

 .custom-navbar {
     background-color: rgb(18, 18, 62) !important;
     font-family: 'Poppins', sans-serif;
     font-size: 1.3rem;
     color: white;
 }

 main hr {
     border: 0;
     background: #9c97f1;
     height: 1.2px;
     margin: 60px 84px;
 }

 .left {
     font-size: 1.5rem;
 }

 .firstSection {
     display: flex;
     justify-content: space-around;
     align-items: center;
     margin: 100px 0;
 }

 .firstSection>div {
     width: 30%;
 }

 .leftSection {
     font-size: 2rem;
 }

 .leftSection #resumeBtn,
 .leftSection #githubBtn {
     align-items: center;
     margin: 30px 14px;
     display: inline;
     cursor: pointer;
     border: 1px solid white;
     background: rgb(18, 18, 62);
     color: white;
     font-size: 13px;
     border-radius: 2px;
     padding: 8px;
 }

 .rightSection img {
     width: 80%;
     border-radius: 50%;
     height: 300px;
 }

 .text-purple,
 #element {
     color: rgb(170, 107, 228);
 }

 .text-gray {
     color: gray;
 }

 .secondSection {
     max-width: 80vw;
     margin: auto;
     height: 80vh;
 }

 .secondSection h1 {
     font-size: 1.5rem;
 }

 .secondSection .box {
     background: white;
     width: 76vw;
     height: 1.5px;
     margin: 130px 0;
     display: flex;
 }

 .secondSection .vertical {
     height: 93px;
     width: 1px;
     background-color: white;
     margin: 0 7.5vw;
     align-items: center;
 }

 .image-top {
     width: 60px;
     position: relative;
     top: -30px;
     margin-left: -30px;
 }

 .vertical-title {
     position: relative;
     top: 75px;
     width: 150px;
     font-size: 19px;

 }

 .vertical-desc {
     position: relative;
     top: 86px;
     width: 150px;
     color: gray;
     font-size: 15px;
 }

 .custom-footer {
     background-color: rgb(18, 18, 62);
 }

 .fa-instagram:hover,
 .fa-linkedin:hover,
 .fa-github:hover,
 .fa-envelope:hover,
 .fa-phone:hover {
     color: black
 }

 @media (max-width: 992px) {
     .firstSection {
         flex-direction: column;
         text-align: center;
     }

     .firstSection>div {
         width: 100%;
         margin-bottom: 30px;
     }

     .leftSection {
         font-size: 1.5rem;
     }

     .rightSection img {
         width: 60%;
         margin-top: 20px;
     }

     .leftSection #resumeBtn,
     .leftSection #githubBtn {
         font-size: 14px;
         margin: 20px 10px 0 0;
     }

     main hr {
         height: 0;
     }
 }

 @media screen and (max-width:1000px) {
     .box {
         flex-direction: column;
     }

     .secondSection {
         height: 100vh;
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .secondSection .vertical {
         height: unset;
     }

     .vertical-title,
     .vertical-desc {
         left: 50px;
     }

     .secondSection .box {
         width: 50vw;
     }

     .image-top {
        top:107px;
     }

     body {
         min-width: fit-content;
     }
 }

 @media screen and (max-width:400px) {
     .secondSection {
         height: 135vh;
     }
 }