/*Default Header Styles*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box  ;
}

body{
    background-color: #F7F9F6;
    color: #1A202C ;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    padding-bottom: 4rem;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: #F7F9F6;
}

header .logo{
  width: 10rem;
  height: auto;
}

header .logo img{
  width: 8rem;
  height: auto;
}

.navbar ul {
  list-style: none;

  display: flex;
  /* margin-top: 1rem; */
  gap: 3rem;
  font-size: 1rem;
  align-items: center;

}

/* .navbar > ul > li{
    border: none;
  border-radius: 10rem;
  background-color: aquamarine;
} */

ul li a {
  text-decoration: none;
  color: #1A202C;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

ul li a:hover {
  border-radius: 0.2rem;
  background-color: grey;
  color: #010c16;
}

@media screen and (max-width: 768px){
  
  header {
  flex-direction: column;
  text-align: center;
  gap: 0.8rem;
  padding: 0.5rem;
}

.navbar ul {
  flex-direction: column;
  /* margin-top: 1rem; */
  gap: 1rem;
  width: 100%;

}

ul li{
  width: 100%;
}

ul li a {
  display: block;
  padding: 0.8rem;
  
}
}

/*Header Class Style End*/

/*Main Class Style Start*/

#about{
  width: 80%;
  height: auto;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#about h1{
  text-align: center;
  font-size: 3rem;
}

#about p{
  font-size: 1.5rem;
}

#about h2{
  text-align: center;
  font-size: 2.5rem;
}

#about ol{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#about ol li{
  font-size: 1.5rem;
}

/*Main Class Style End*/

/*Start of Register Page*/

.heading1{
  text-align: center;
  font-size: 3rem;
  padding: 1rem;
}

form{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    
}

.namecontainer{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.emailcontainer{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.passwordcontainer{
    display: flex;
    flex-direction: column;
    gap: 1rem;    
}

#name{
    width: 12rem;
    height: 2rem;
}

#email{
    width: 12rem;
    height: 2rem;
}

#email2{
    width: 12rem;
    height: 2rem;
}

#email3{
    width: 12rem;
    height: 2rem;
}

#password{
    width: 12rem;
    height: 2rem;
}

form > button{
    cursor: pointer;
    padding: 1rem;
}

form > button:hover{
    background-color: #1A202C;
    color:white;
}

/*End of Register Page*/

footer{
  border: 1px solid rebeccapurple;
  background-color: #1A202C;
  color: #F7F9F6;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
}

footer p{
  text-align: center;
  padding: 0.2rem;
}

/*Start of Profile Page*/

.profilepage{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#profileheading1{
  margin-top: 1rem;
  text-align: center;
  font-size: 3rem;
}

#profileparagraph{
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
}

#profileheading2{
  text-align: center;
  font-size: 2rem;
}

.profilepage ol{
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profilepage li{
  list-style-type:circle ;
}

.profilepage ol li a{
  text-decoration: none;
  font-size: 2rem;
}

.profilepage ol li a:hover{
  text-decoration: underline;
}



/*End of Profile Page*/

/*Start of ComingSoon Page */

#comingsoon{
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

#headingcomingsoon{
  text-align: center;
  font-size: 3rem;
  margin-left: auto;
  margin-right: auto;
}

#paragraphcomingsoon{
  text-align: center;
  font-size: 1.5rem;
}

/*End of ComingSoon Page*/

/*Start of Profile Page Logged In*/

.profilepageloggedin{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profilepageloggedinp{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
}

.profilepageloggedinp2{
    margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  padding: 0.5rem;
}

#data{
  margin-top: 1rem;
}

#dataparagraph{
      margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  padding: 0.5rem;
}

#ulofdata{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;

}

.liofulofdata{
  list-style-type: square !important;
    margin-left: auto;
  margin-right: auto;
}

.liofulofdata::marker{
  content: "\25AA";
}

.liofulofdata a{
  font-size: 2rem;
  text-decoration: none;
}

.liofulofdata a:hover{
  text-decoration: underline;
  background-color: unset;
}

/*End of Profile Page Logged In*/

/*Start of Table Design*/

table{
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

caption{
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

td,th{
  border: 1px solid burlywood;
  text-align: left;
  padding: 0.5rem;
}

.btns{
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btns a{
  text-decoration: none;
  border: 1px solid #1A202C;
  padding: 0.3rem 0.8rem;
  border-radius: 0.4rem;
  background-color: #1A202C;
  color: white;
}

.btns a:hover{
  background-color: #010c16;
  color: white;
}

.btns button{
    border: 1px solid #1A202C;
  padding: 0.3rem 0.8rem;
  border-radius: 0.4rem;
  cursor: pointer;
    background-color: #1A202C;
    color: white;

}



.btns button:hover{
  cursor: pointer;
  background-color: #1A202C;
  color: white;
}

th:last-child,
td.btns{
  width: 1%;
  white-space: nowrap;
}

/*End of Table Design*/