@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");


/* reset css to default */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
} */

/* set the page background and styles */
/* html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: lightcyan;
} */

/* Start of styling header and nav */
/* ******************************* */

/* set the header styles */


/* set the logo styles */
.sectiontitle,
.logo {
  font-size: 45px;
  font-weight: 700;
  color: lightseagreen;
}

/* set the navigation styles */
nav ul {
  display: flex;
}

nav ul li {
  list-style: none;
  margin-inline: 30px;
}

nav ul li a {
  color: teal;
  text-decoration: none;
}

nav ul li:hover a {
  color: #fdbd31;
  transition: 0.3s;
}

/* ***************************** */
/* End of styling header and nav */

/* Start of styling mainsection */
/* **************************** */

/* set the main cointainer as a grid of columns */
#mainsection {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 20px;
  margin: auto;
  width: 80%;
  min-height: 100dvh;
  border-bottom: 1px solid lightgrey;
  margin-bottom: 10px;
  /* overflow: auto; */
}
@media (max-width: 768px){
  #mainsection {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 80%;
    border-bottom: 1px solid lightgrey;
    padding-bottom: 10px;
    /* overflow: auto; */
  }
}


/* set the right div column */
.right-div {
  flex: 1;
  max-height: 100%;
  /* overflow: auto; */
  /* display: flex;
  flex-direction: column; */
  /* justify-content: center; */
  /* align-items: normal; */
}
.right-div p, .right-div li{
  color: grey !important ;
}

details[open] > summary{
  display: none;
}

/* set the profilecontainer */
.profilecontainer {
  display: flex;
  align-items: center;
  padding-left: 10px;
  margin-bottom: 10px;
  width: 300px;
}

/* set the profile details */
.profiledetails {
  display: block;
  padding: 20px;
  width: 280px;
  margin-right: 10px;
  color: gray;
  font-weight: normal;
}

/* set the rounded image */
.rounded-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0px 5px 0px 5px;
  border: 5px solid white;
}

/* set the profile text (targets span tags within <p> tags in profilecontainer class) */
.profilecontainer p span {
  display: block;
}

/* set the profile text (targets span tags within <p> tags in profilecontainer class) */
.profilecontainer strong {
  font-weight: bold;
  color: #fdbd31;
}

/* set the profile details' list */


/* sets the subheaders within profiledetails class */
.profiledetails .subheader {
  border-bottom: 1px dashed lightblue;
  border-top: 1px dashed lightblue;
}

/* set the linkscontainer */
.linkcontainer {
  display: flex;
  margin-top: 10px;
}

/* set the <a> tags' styles */
.linkcontainer a {
  padding: 10px 20px;
  font-size: 16px;
  background: teal;
  color: white;
  border: 2px solid #fff;
  border-radius: 10px;
  margin-right: 5px;
  cursor: pointer;
  text-decoration: none;
}

.text {
  margin-top: 100px;
}

.socials-list{
  display: inline;
}
.socials-list a{
  text-decoration: none;
  color: grey;
}

.icons{
  font-size: 2rem !important;
}

/* set the text class style for the animated text in <h1> tag */
.text h1 {
  font-size: 36px;
  line-height: 72px;
  letter-spacing: 2px;
  color: lightslategray;
}

/* set the <a> link tags' style (targets <a> tags within text class) */
.text p {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 30px;
  padding-bottom: 20px;
}

/* ************************** */
/* End of styling mainsection */

/* Start of styling projectsection */
/* ******************************* */
#works p, #works li{
  color: gray !important;
}


/* ***************************** */
/* End of styling projectsection */

/* Start of styling miscellaneous elements */
/* *************************************** */

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

.top a {
  margin-top: 20px;
  text-decoration: none;
  color: lightseagreen;
  font-size: small;
}

/* ************************************* */
/* End of styling miscellaneous elements */
