/* General Body Styling */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #040708;
  margin: 0;
}


/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  align-items: center;
  width: 100%;
  border-bottom: 2px solid;
  border-color: #00abdc;
  background: #0a1214;
  box-sizing: border-box;
  z-index: 1;
}

.site-title{
  display: flex;
  align-items: center;
}

.site-logo{
  height: 40px;
  margin-left: 10px;
  margin-right: -10px;
}

.site-title h1 {
  color: #fff;
  margin: 0;
  font-size: 24px;
  padding: 10px;
}

.nav_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
  z-index: 1;
}

.nav_list li {
  display: inline;
  margin: 0 15px;
}

.nav_list a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  cursor: pointer;
}

nav a:hover {
  color : #00abdc;
}

nav a::after{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #00abdc;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
  transform: scaleX(0);
}

nav a:hover::after{
  transform: scaleX(1);
}

/* Main Content Styling */

.main-section {

  display: flex;
  flex-direction: row;
  padding: 100px;
  position: relative;

}

.about-content {

  max-width: 1000px;
  margin: 120px 0 0 0;
  padding: 20px;

  align-self: flex-start;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: min-content;
  background: #0a1214;

  border-top: 2px solid #00abdc;
  border-right: 2px solid #00abdc;
  border-bottom: 2px solid #00abdc;
  border-left: 2px solid #00abdc;
  border-radius: 250px 250px 250px 250px;

}

.socials{
  align-self: flex-end;
  margin: 0 120px 0 0;
  padding: 20px;

  min-width: 150px;
  text-align: center;
}
.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.social-icons li a {
  font-size: 2rem;
  color: #00abdc;
  transition: 0.3s;
}

.social-icons li a:hover {
  color: #fff;
  transform: scale(1.2);
}


h1, h2 {
  font-size: 30px;
  color: #fff;
  text-align: center;
}
.main-section h2{
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.main-section p {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #fff;
}


/* Footer Styling */
footer {
  text-align: center;
  padding: 10px;
  border-top: 2px solid;
  border: #00abdc;
  background: #030b19;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 3;
}

footer p {
  color: white;
  font-size: 18px;
}



