body{
    margin: 0%;
}
::-webkit-scrollbar {
    display: none;
}

section{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
section .container{
  margin: 100px;
}
.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

.page-1{
	background: linear-gradient(to right, #ffdddd, #f1ffda);
	background-size: 400% 400%;
	animation: gradient 8s ease infinite;
	height: 100vh;
}
.background-page-1{
    background-image: url(./assets/background/gradient.png);
    height: 100vh;
}
.heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-align: left;
  }
  @media (max-width: 640px) {
    .heading {
      text-align: center;
      font-size: 1.25rem;
    }
  }
  
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.background-page-2{
    background: url("assets/background/blue-abstract-gradient-wave-wallpaper.jpg");
    background-size:cover;
    background-repeat: no-repeat;
    height: 100vh;
}
.intro-section{
    margin-left: 10%;
    margin-right: 10%;
}
.about-section{
    padding-top: 24vh;
    margin-left: 10%;
    margin-right: 10%;
}


.profile-pic{
    /*
    display: block;
    margin-left: auto;
    margin-right: auto;
    */
    margin-top: 20vh;
    max-width: 20%;
    height: auto;
    border-radius: 6px;
}
.intro-section h1{
    margin-top: 4vh;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 60%;
    font-size: 160%;
    color: #2C3136;
}
.icons{
    margin-top: 4%;
    margin-left: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 28%;
}
.icon{
    transition: 0.2s ease-in-out;
}
.icon:hover {
    transform: scale(1.4);
}


.about-section h1{
    margin-top: 1vh;
    color: #434A54;
    max-width: 760px;
    font-weight: 400;
    font-size: 200%;
}
.about-section p{
    font-size: 180%;
    color: #434A54;
    max-width: 760px;
    font-weight: 400;
}


@media screen and (max-width: 600px) {

.profile-pic{    
    margin-top: 22vh;
    margin-left: 2.5vh;
    max-width: 88%;
    height: auto;
    border-radius: 6px;
}
/*
.intro-section h1{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    font-size: 88%;
    color: #2C3136;
}
*/
.intro-section h1{
    font-family: Arial, Helvetica, sans-serif;
    position: static;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    font-size: 88%;
    color: #2C3136;
}
.icons{
    margin-top: 6%;
    margin-left: 18%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 64%;
}

.about-section h1{
    margin-top: 1vh;
    color: #434A54;
    max-width: 760px;
    font-weight: 400;
}
.about-section p{
    margin-top: 1vh;
    color: #434A54;
    max-width: 760px;
    font-weight: 400;
    font-size: 140%;
}
}