/* stylee.css file */
html {
  height: 100%;
  /* Other html styles if needed */
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: url('Backgroundimage.jpg') no-repeat center center;
  background-repeat: no-repeat;
  background-size: 100% 100%; /* Cover the entire area */
  -o-background-size: cover; /* For Opera */
  -moz-background-size: cover; /* For Firefox */
  -webkit-background-size: cover; /* For Chrome and Safari */
}



* {
  box-sizing: border-box;


img {
  max-width: 100%;
  height: auto;
}



.navbar {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
}

.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  margin: 10px; /* Add margin to top and bottom for wrapped items */
}


.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: white;
  max-width: 90%;
  margin: auto;
}

.profile-pic {
  width: 50%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url('Mypicture.jpg') no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  border: 5px solid black;
  margin: 0 auto 20px;
}


@media screen and (max-width: 768px) {
  .profile-pic {
    width: 70%; /* Adjust for smaller screens */
  }
}





.content h1 {
  margin: 0;
  font-size: 36px; /* Increased font size for Ralph Farah */
}

.content p {
  margin: 0;
  font-size: 24px; /* Increased font size for Data Analysis & Web Development */
}

#contactt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 70vh;
}

.contactt-info-upper-container {
  display: flex;
  justify-content: center;
  border-radius: 2rem;
  border: rgb(53, 53, 53) 0.1rem solid;
  border-color: rgb(163, 163, 163);
  background: (250, 250, 250);
  margin: 2rem auto;
  padding: 0.5rem;
}

.contactt-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem;
}

.contactt-info-container p {
  font-size: larger;
}

.contactt-icon {
  cursor: default;
}

.email-icon {
  height: 2.5rem;
}
.linkedin-icon {
  width: 30px; /* Adjust this value as needed to make the icon smaller */
  height: auto; /* This ensures the icon maintains its aspect ratio */
}

/* FOOTER SECTION */

footer {
  height: 26vh;
  margin: 0 1rem;
}

footer p {
  text-align: center;
}
nav,
.nav-links {
  display: flex;
}

nav {
  justify-content: space-around;
  align-items: center;
  height: 17vh;
}

.nav-links {
  gap: 2rem;
  list-style: none;
  font-size: 1.5rem;
}
.lg\:w-1\/2.w-full.leading-relaxed.text-pink-300 {
    color: white !important;
}

#contact,
  
}

@media screen and (max-width: 1200px) {

 
  
  .arrow {
    display: none;
  }
  section,
  .section-container {
    height: fit-content;
  }
  section {
    margin: 0 5%;
  }
  .section__pic-container {
    width: 275px;
    height: 275px;
    margin: 0 auto 2rem;
  }
  .about-containers {
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  #conttact,
  footer {
    height: 40vh;
  }
  

  footer nav {
    height: fit-content;
    margin-bottom: 2rem;
  }

  .section-bg {
    background-color: rgba(0, 0, 0, 0.1);
}

  .about-containers,
  .contactt-info-upper-container,
  .btn-container {
    flex-wrap: wrap;
  }
  .contactt-info-container {
    margin: 0;
  }
  .contactt-info-container p,
  .nav-links li a {
    font-size: 1rem;
  }
  .experience-sub-title {
    font-size: 1.25rem;
  }
  .logo {
    font-size: 1.5rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .section__pic-container {
    width: auto;
    height: 46vw;
    justify-content: center;
  }
  .section__text__p2 {
    font-size: 1.25rem;
  }
   .section__text__p1 {
    font-size: 20px;
  }
 
  .title {
    font-size: 2rem;
    text-align:center;
  }
  .text-container {
    text-align: justify;
  }
}
.contactme {
    text-align: center; /* Centers the text horizontally */
    font-size: 37px; /* Adjust this value to increase or decrease the font size */
    width: 100%; /* Ensures the element spans the full width for centering */
    margin: 0 auto; /* Adds automatic margin to center the block if needed */
    font-weight:bold;
}


