html{
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: verdana;
}
body{
  margin: 0;
  padding: 0;
}
.header{
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0B2545), rgba(93A3B1));
  background-position: center;
  background-size: cover;
  position: relative;
}

nav{
  margin: 0;
  padding: 0;
  
  display: flex;
  padding: 2% 5%;
  justify-content: space-between;
  align-items: center;
}
nav img{
  width: 100%;
}
.nav-link{
  flex: 1;
  text-align: right;
}
.nav-link ul li{
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-link ul li a{
  color: white;
  text-decoration: none;
  font-size: 25px;
}
.nav-link ul li::after{
  content: ' ';
  width: 0%;
  height: 2px;
  background: #A5489E;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-link ul li:hover::after{
  width: 100%;
}
.text-box{
  color: white;
  width: 90%;
  position: absolute;
  text-align: center;
}
.text-box h1{
  font-size: 70px;
}
.text-box p{
  margin 10px 0 40px;
  font-size: 15px;
}
.banner {
  background: linear-gradient(to bottom right, #027971, #2C5777);
  color: white;
  height: 100vh; 
  width: 100vw;
  display: flex
  text-align: center;
  padding: 50px 20px;
  position: relative;
}
.banner h1 {
  font-size: 70;
}

.aboutMe{
  width: 100%;
  margin: auto;
  text-align: center;
  background-color: black;
}
h1{
  font-weight: bold;
  color: white;
  padding: 100px;
}
p{
  color: white;
}

@media(max-width: 700px){
  .text-box h1{
    font-size: 20px;
  }
  .nav-link ul li{
    display: block;
  }
  .nav-link{
    position: absolute;
    background: black;
    height: 100vh;
    width: 200px;
    top: 0;
    right: 0;
    text-align: left;
    z-index: 2;
  }
}

