:root {
	--color-white: hsl(0, 0%, 100%);
	--color-light: hsl(206, 33%, 96%);
	--color-black: hsl(0, 0%, 0%);
    --color-black-2:hsl(0, 0%, 12.5%);
	--color-night: hsl(214, 100%, 10%);
    --color-beige:hsl(40, 30%, 85%);
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
*{
  margin: 0;
  padding: 0;
}
body{
  color: #000;
}
.home{
    height: auto;
    /* width: 100%; */
    background-color: rgb(0, 0, 0);
    font-family: 'Ubuntu', sans-serif;
}
.homePic{
    display: flex;
    box-sizing: border-box;
    /* width: 30%; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* top: 10em; */
}

/* About me page */
.about-section{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row-reverse;
    padding-top: 5em;
    bottom: 0;

}

.about-text{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.about{
color: var(--color-beige);
text-align: center;
font-family: Michroma;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: 26px; 
width: 625px;
height: 548px;
flex-shrink: 0;
}
.about-me{
  width: 495px;
height: 484px;
}
.about-title{
font-size: 25px;
}
.about p{
  display: flex;
  float: left;
  text-align: center;
  justify-content: center;
}

.goals {
color: var(--color-beige);
text-align: center;
font-family: Michroma;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 26px; 
width: 625px;
height: 548px;
}

/* .underline{
width: 351.013px;
height: 1px;
color: beige;
} */



/* Name animation */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 .hero h1{
	color: var(--color-beige);
  font-size: 128px;
	text-align: center;
	font-style: normal;
	line-height: 145px; /* 302.083% */
    text-transform: uppercase;
    background: linear-gradient(90deg, #2f2f2f, beige, #000);
    letter-spacing: 5.5px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-size: 80%;
    animation: shine 3.5s linear infinite;
    align-items: center;
 }
#first, #second{
    font-weight: 700;

}
  
  #first::after {
    content: "";
    display: flex;
    margin: auto;
    height: 2.3px;
    animation: underline 4 s infinite;
  }
  
  @keyframes underline {
    0% {
      width: 0%;
      background-color: rgb(239, 239, 239);
    }
    100% {
      width: 100%;
      background-color: transparent;
    }
  }
  
  #second {
    text-align: start;
    font-size: 128px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #2f2f2f, beige, #000);
    letter-spacing: 5px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-size: 80%;
    animation: shine 4s linear infinite;
  }
  
  @keyframes shine {
    0% {
      background-position-x: -500%;
    }
    100% {
      background-position-x: 500%;
    }
  }
