.screen-section{
  height: 100vh;
  width: 100vw;
  background-color: black;
}
.home-section {
  background-image: url('images/background1.png');
  background-size: cover;
  background-position: center;
}
body {
  margin: 0;
  padding: 0;
  background-color: #d8d8d8;
  color: white;
  font-family: sans-serif;
}
.introduction-section{
  display: block;
  position: absolute;
  top: 65%;
  left: 60%;
}
.title-font{
  font-size: 180px;
}
.header-font {
  font-size: 40px;
  font-weight: bold;
}
.sub-header-font {
  font-size: 32px;
}
.third-header-font {
  font-size: 28px;
  font-weight: normal;
}
.text-font {
  
  font-weight: normal;
}
.quote-font {
  font-size: 80px;
  font-style: italic;
}
.title-section{
  display: block;
  position: absolute;
  top: 30%;
  left: 10%;
}
* {
margin:0;
padding:0;
}
.margin-top_large {
  margin-top: 20px;
}
.margin-top_medium {
  margin-top: 10px;
}
.text-section{
  display: block;
  position: relative;
  margin-top: 20px;
}
.about-me-section-text{
  left: 10vw;
}
.about-philosophy-section-text{
  left: -10vw;
}
.about-me-section{
  flex: 1;
  margin-bottom: auto;
}
.about-philosophy-section{
  flex: 1;
  margin-top: auto;
}
.resume-section button{
  background-color: violet;
  border-radius: 20px;
  min-width: 100px;
  padding: 15px;
  width: 200px;
  font-weight: 700;
}
.content-section{
  position: absolute;
  left: 10%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 20vh;
  width: 80%;
  height: 48vh;
}
.content-section-projects{
  position: absolute;
  left: 10%;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 20vh;
  width: 80%;
  height: 48vh;
}
.text-right-aligned{
  text-align: right;
}
.show-pointer{
  cursor: pointer;
}
.resume-button{
  margin-top: 70vh;
  margin-left:10vw;
  display: block;
  position: absolute;
}
.projects-section{
  margin-top: 0 !important;
}
.projects-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.project-card{
  background-color: #333;
  padding: 20px;
  margin-top: 10px;
  border-radius: 10px;
  width: 50%;
}
.skill-card{
  background-color: #000;
  padding: 40px;
  margin-top: 10px;
  border-radius: 10px;
  width: 50%;
}
.skill-card:hover{
  /* background-color: #333; */
  transition: background-color 0.3s ease;
}
.skill-title{
  margin-bottom: 20px;
}
.skill-details-section{
  display: none;
  width: 40vw;
  margin-left: auto;
  position: fixed;
  top:25vh;
  right: 2vw;
  border-radius: 20px;
  padding: 30px;
  background-color: pink;
}

.content-section-details{
  display: relative;
  /* position: absolute; */
  padding-top: 55vh;
  padding-left: 10vw;
  line-height: 7vh;
}

.hire-me-button{
  padding: 10px 20px;
  font-size: large;
  border-radius: 7px;
}
.hire-me-button:hover{
  background-color: #BBB;
  transition: transform 0.3s ease;
  transform: scale(1.1);
}


































@media screen and (max-width: 1500px) {
  .content-section{
    height: 50vh;
    margin-top: 13vh;
  }
  .resume-section button{
    position: absolute;
    left: 13%;
    display: block;
    background-color: violet;
    border-radius: 20px;
    padding: 15px;
    
  }
}
@media screen and (max-width: 1000px) {
  .introduction-section{
    display: block;
    position: absolute;
    top: 80vh;
    left: 10%;
  }
  .title-font{
    font-size: 15vw;
  }
  .sub-header-font {
    font-size: 2.5vw;
  }
  .content-section{
    height: 60vh;
    flex-direction: column;
    margin-top: 10vh;
  }
  .about-philosophy-section{
    margin-top: 30px;
  }
  .about-me-section-text{
    left: 0;
  }
  .about-philosophy-section-text{
    left: 0;
  }
}
@media screen and (max-width: 700px) {
  .content-section{
    height: 60vh;
    flex-direction: column;
  }
  .sub-header-font {
    font-size: 5vw;
  }
  .text-font {
    font-size: 3vw;
  }
  .text-right-aligned{
    text-align: left;
  }
}