* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #B4CCB9;
    border-radius: 15px;
}

.hero-title {
    position: relative;
    top: 5%;
    left: 5%;
    color: #333;
    font-size: 50px;
    text-align: left;
    margin-left: 150px;
}

.hero-text {
    margin: 0;
    display: inline-block;
    word-wrap: break-word;
    width: 80%;
    font-size: 20px;
    text-align: left;
    line-height: 1.5;
    padding-top: 20px;
    color: #555;
    margin-left: 230px;
    margin-right: 90px;
}

.folio {
    position: relative;
    width: 100%;
    height: 200vh;
    background: #B4CCB9;
    border-radius: 15px;
}

.folio-title {
    position: relative;
    top: 5%;
    left: 5%;
    color: #333;
    font-size: 50px;
    text-align: left;
    margin-left: 150px;
}

.folio-text {
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    width: 30%;
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    margin-top: 20px;
    margin-left: 40px;
    margin-bottom: 10px;
    color: #333;
}

.folio-text a {
    display: inline-block;
    color: #000;
    text-decoration: underline;
    font-size: 20px;
}

.github-link {
    writing-mode: vertical-lr;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    font-size: 30px;
    line-height: 1.5;
    margin-right: 20px;
}

.links {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-left: 100px;
}

.links a {
    margin-left: 15px;
    color: #555;
}

.qual {
    position: relative;
    width: 100%;
    height: 170vh;
    background: #B4CCB9;
    border-radius: 15px;
}

.qual-text {
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    text-align: left;
    width: 70%;
    font-size: 16px; 
    line-height: 1.4; 
    margin-top: 10px; 
    margin-left: 50px; 
    margin-right: 50px;
    margin-bottom: 10px;
    color: #333;
}


.qual-text h2{
    display: none;
}

.serve{
    background-color: #B4CCB9;
    height: 100vh;
}

.serve-heading{
    display: none;
}

.serve-text{
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    text-align: left;
    width: 70%;
    font-size: 16px; 
    line-height: 1.4; 
    margin-top: 10px; 
    margin-left: 50px; 
    margin-right: 50px;
    margin-bottom: 10px;
    color: #333;
}

.flex-container {
    display: flex;
    align-items: flex-start;
}

.flex-title {
    display: flex;
    align-items: flex-start;
    background-color: #739771;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.flex-container2 {
    display: flex;
    flex-direction: row;
    margin-left: 180px;
}

.flex-container3 {
    display: flex;
    flex-direction: column;
}

.sideways-text {
    display: none;
}

nav {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}

nav ul li a:hover {
    color: #739771;
}


hr {
    display: none;
    height: 1px;
    border: 0;
    border-top: 5px solid #333;
    margin: 1em 0;
    margin-left: 50px;
    margin-right: 50px;
    padding: 0;
}

hr2 {
    display: none;
    height: 1px;
    border: 0;
    border-top: 2px solid #333;
    margin: 1em 0;
    margin-left: 50px;
    margin-right: 50px;
    padding: 0;
}

.resume {
    margin-left: 120px;
    margin-right: 10px;
}
  
  .btn {
    padding: 10px 25px;
    font-weight: 500;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    border: 2px solid rgb(0,0,0);
    z-index: 1;
    color: black;
  }
  
  .btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    direction: rtl;
    z-index: -1;
    background: #739771;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    color: rgb(255,255,255);
  }
  
  .btn:hover:after {
    left: auto;
    right: 0;
    width: 100%;
  }
  
  .btn:active {
    top: 2px;
  }
