

html{

width: 100%;
height: 100%;

}

body{
    width: 100%;
    height: 100%;
    
    padding: 0;
    margin: 0;
    background-color: white;
      
}

/* FONTS */


.bebasFont{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}




/* <weight>: Use a value from 200 to 700 */
.oswaldFont {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

/* <weight>: Use a value from 100 to 900 */


.robotoFont {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}



#headerDiv{
   

    background-color:#356477;
    width: 100%;
    height: 15%;

    
   
    display: flex;
    align-items: center;
    flex-basis: 100%; 
  

}

#goBackButton {
    width: 15%;
    height: 80%;
    background-color: transparent;
    color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-left: 1%;

}

#goBackText {
    font-family: 'Oswald', sans-serif;
    color: black;
    font-weight: 400;
    font-size: 150%;
    text-align: left;
    line-height: 1;
    align-items: center;
    padding-left: 1%;
   color: white;

}

#title {
    font-family: 'Oswald', sans-serif;
    color: rgb(255, 255, 255);
   font-weight: 350;
    font-size: 180%;
    text-align: left;
    line-height: 1;
    flex-grow: 1;
    margin-left: 24%;
}
#container{
  display: flex;
 flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin:0;
  padding: 0;
 
}

p {

  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 120%;

  margin: 0;
}


/*
The Titanic: Machine Learning from Disaster project
*/
#textDiv {

  height: 10%;
  width: 80%;
  /*border: 1px solid black;*/
  flex-basis: 100%;
 margin:0;
  padding-left: 5%;
  padding-right: 5%;
  text-align: justify;
  margin-top: 2%;
}


/*
Since this is my first project using Artificial Intelligence... 
*/
#textDiv1 {
  height: 50%;
  width: 90%;
  display: flex;
  /* Aligns child elements in a row */
  align-items: flex-start;
  /* Vertically centers items */
  gap: 10px;
  /* Optional: Adds spacing between the button and text */
  margin-left: 5%;
  margin-right: 9%;
  flex-basis: 95%;

}

/*
This competition presents two datasets containing... 
*/

#textDiv2 {

  display: flex;
  /* Aligns child elements in a row */
  align-items: flex-start;
  /* Vertically centers items */
  gap: 10px;
  /* Optional: Adds spacing between the button and text */
  margin-left: 5%;
  margin-right: 9%;
  flex-basis: 95%;



}


#expandButton {  transform: rotate(90deg);
}

#expandButtonDiv {
  background-color: transparent;
  width: 10%;
  height: 5%;
  cursor: pointer;
  border: black 1px solid;
  border-radius: 3px;
flex-basis: 100%;
margin-bottom: auto;
 margin:0;
  margin-left: 5%;
  margin-right: 5%;
justify-content: center;
display: flex;
}







#transparentText {


  display: none;
  /* Hidden by default */
  color: transparent;
  /* Initially transparent */
  transition: color 2s ease-in-out;
  /* Smooth transition */
  text-align: justify;
}

#transparentText.visible {
  color: black;
  /* Final state is black */
  width: 100%;
}


.rounded-highlight {
  background-color: gray;
  /* Modern blue color - change to your preference */
  color: white;
  /* White text */
  padding: 2px 8px;
  /* Adjust padding for visual balance */
  border-radius: 5px;
  /* Controls the roundness of corners */
  display: inline;
  /* Ensures it stays inline with text */
  font-weight: 400;
  /* Slightly bolder text */
  box-decoration-break: clone;
  /* Ensures rounded corners on line breaks */
  -webkit-box-decoration-break: clone;
  /* For Safari support */
  padding: 0.03em 0.5em;

}

table {
  border-collapse: collapse;
  width: 10%;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 50%;
}
th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
th {
  background-color: #f2f2f2;
  position: sticky;
  top: 0;
}
tr:nth-child(even) {
  background-color: #f9f9f9;
}


#twoColumns{

display: flex;
justify-content: space-between;



}

.column{

flex:1;
margin: 0 10px;


}

iframe{

border:none;

}

#codeDiv{

margin-left: 5%;
width: 100%;
flex-basis: 100%;
margin-right: 7%;
text-align: justify;
}


.cmdFont{

background-color: black;
color: white;
margin-top: 0;


}

