*{
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.oneSection{
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #ffff00, 
        #ff69b4, 
        #800080, 
        #0000ff   
    );
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
}

.oneSection div h1,p{
    text-align: center;
}

.oneSection div h1{
    color: lightseagreen;
    font-size: 5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.oneSection div h1 i{
    color: lightseagreen;
}

.oneSection div p{
    color: whitesmoke;
    font-size: 1.4rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.fa-regular{
    color: lightseagreen;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 426px) {
  .oneSection {
    padding: 0 20px;
  }
  .oneSection div h1{
    font-size: 2.5rem;
  }
  .oneSection div p{
    font-size: 1.2rem;
  }

  .twoSection h1{
    font-size: 1.4rem;
  }
}

@media (max-width: 320px) {
  .oneSection {
    padding: 0 20px;
  }
  .oneSection div h1{
    font-size: 2.5rem;
  }
  .oneSection div p{
    font-size: 1.2rem;
  }

  .twoSection h1{
    font-size: 1.4rem;
  }
}


.twoSection{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.twoSection h1{
    text-align: center;
    position: absolute;
    bottom: 10px;
}


.glow-text {
  color: black;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;

  text-shadow: 0 0 5px gold;

}

