/* At the top are all heading and text styling */

h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(131, 29 , 142);
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: beige;
    width: 100%;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    width: 100%;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    color: beige;
}

h6 {
    font-family: Arial, Helvetica, sans-serif;
    color: #220140;
    text-align: end;
}
p {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    height: fit-content;
}
p1 {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: black;
    text-align: center;
}
footer {
    color: grey;
}
a:link {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: none;
  }
  a:visited {
    color: rgb(0, 0, 0);
    background-color: transparent;
    text-decoration: none;
  }
  a:hover {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: underline;
  }
  a:active {
    color: rgb(214, 214, 214);
    background-color: transparent;
    text-decoration: underline;
  }



/* This part applies to all webpages */

#main-header {
    display:flex;
    flex-wrap: wrap;
    justify-content:space-around;
    width: 98%;
    align-items:flex-start;
    margin: 5px;
    padding-left:15px;
    padding-right: 15px;
    background-color: white;
    border-radius: 50px;
}
.buttonsC {
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content:flex-start;
    align-items:flex-start;
}

#buttons {
    background-color: #9800b3;
    border: none;
    color: white;
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
}

html {
    background-color: #220140;
}
img {
    width: fit-content;
    height: fit-content;
    border-radius: 5px;
    border: 2px solid rgb(255, 255, 255);

}


/* This is for the Index page */
.claims {
    display: flex;
    flex: auto;
    flex-wrap: wrap;
    justify-content: space-evenly;
    border-radius: 5px;
    border: 2px solid rgb(131, 29 , 142);   
}
#claim {
    border-radius: 5px;
    border: 2px solid white;
    background-color: #9800b3;
}
.FounderProfile {
    border-radius: 5px;
    border: 2px solid white;
    background-color: #9800b3;
    height: fit-content;
    
}
#FounderDetails {
    flex: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.Skills {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    border-radius: 5px;
    border: 2px solid rgb(255, 255, 255);
    background-color: white ;
    text-align: center ;
}
#skill {
    width: 20% ;
    border-radius: 5px;
    border: 2px solid rgb(0, 0, 0);
}
.Links {
    border-radius: 5px;
    border: 2px solid rgb(0, 0, 0);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row; 
    justify-content: space-evenly;
}
#link {
    width:20%;
    padding: 1%;
}

/* This is for the Projects page */

.Projects {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0px;
    border-radius: 5px;
    border: 2px solid rgb(131, 29 , 142);
}
#PastProject1 {
    background-color: #a809c4;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid;
    align-items:center ;
}
#PastProject2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 5px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
    border: 2px solid;
    align-items: center;
}
#PastProject3 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid;
    align-items: center;
}
#CurrentProjects {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 5px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
    border: 2px solid;
    align-items: center;
}
.working {
    background: #a809c4;
    border-radius: 5px;
    border: 2px solid white;
}


/* This is for the contact page */
.IdeaSubmission {
    background-color: white;
    max-width: 50%;
    border-radius: 5px;
    border: 2px solid rgb(80, 1, 184);
}
details {
    background-color: #54059c;
    width: 50%;
    border-radius: 5px;
    border: 2px solid white;
}
summary {
    background-color: #54059c;
    width:50%;
}