

body    {
        background-color: lightblue;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        
    }

.navbar {
        display: flex;
        justify-content:center;
        align-items:center;

    }
.navlist {
        list-style-type:none;
        margin:0;
        padding:5px;
        display:flex;
        justify-content:space-evenly;
    
}
ul li {
        font-size: 1.5em;
        margin:0 10px;
        text-decoration:none;
        display:inline;
        justify-content:space-evenly;

}


h1 {
    text-align:center;
    font-size:2em;
    border-color:antiquewhite;
    border-style:solid;
    border-width:5px;
    border-radius: 20px;
    background-color:antiquewhite;
}

p,h2,h3,h4 {
     text-align:center;
    font-size:2em;
    border-color:antiquewhite;
    border-style:solid;
    border-width:5px;
    border-radius: 20px;
    background-color:antiquewhite;
}


/* table {
        display: flex;
        justify-content: center;
        flex-grow: 1;
        margin: 0 auto;
        border-collapse: collapse;
        border: 15px solid black;
        width: 50%;
        height: 100%;
        border-radius: 50px;
        padding: 50px;
        font-size: large;
    } */



.sisterships {
        height: 600px;
        width: 350px;
        position:absolute;
        left:75%;
        background-color: black;          
        border: 2px solid black;
        border-radius: 20px;
        
}   

.sunken {
        height: 100%;
        width:99%;
        display:block;
        align-items:center;
        background-color: black;          
        border: 2px solid black;
        border-radius: 20px; 
        margin:0 auto;

}
.styled-table {
  width: 100%;                /* full width of its container */
  border-collapse: collapse;  /* no double borders */
  table-layout: fixed;        /* evenly distribute column widths */
          
  font-family: sans-serif;
  font-size: 1.2em;
}

.styled-table caption {
    
  caption-side: top;
  font-size: 1.5em;
  font-weight: bold;
  padding-bottom: 0.5em;
}

.styled-table th,
.styled-table td {
  border: 1px solid black;
  padding: 0.6em;
  text-align: center;           /* or center if you prefer */
  overflow-wrap: anywhere;    /* keep long text from overflowing */
}

.styled-table thead th {
    color:white;
  background-color:black;
}

@media (max-width: 600px) {
  .styled-table {
    display: block;
    overflow-x: auto;         /* allow horizontal scroll on small screens */
    white-space: nowrap;
  }
  .sunken {
    display:none;
  }
  .sisterships {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;            /* adjust height for smaller screens */


  }
  }

.titanic-fact-section {
    text-align: center;
    margin: 2em auto;
}

#factBtn {
    font-size: 1.2em;
    padding: 0.5em 1em;
    background-color: navy;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#factBtn:hover {
    background-color: darkred;
}

#factDisplay {
    margin-top: 1em;
    font-size: 1.4em;
    padding: 1em;
    border: 2px solid black;
    background-color: antiquewhite;
    border-radius: 15px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

