   @charset "utf-8";
/* CSS Document */


.content {
    background-color: white;
    width: 1000px;
    padding: 20px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
}

   .scale {
    transition: 0,5s; 
   }
   .scale:hover {
    transform: scale(1.2); 
   }
nav ul {
    list-style-type: none; 
    padding: 0;
    background-color: lightblue; 
    border-radius: 25px; 
    overflow: auto;
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 20px;
    display: flex; 
    justify-content: center; 
}

nav ul li { 
    margin: 0 15px; 
}

nav ul li a { 
    display: block; 
    color: Black; 
    text-align: center; 
    padding: 12px 12px; 
    text-decoration: none; 
    transition: color 0.5s; 
}

nav ul li a:hover { 
    color: darkgreen; 
}


textbox { 
  padding: 25px; 
  background: White; 
  border: 2px solid indigo ; 
}

figcaption {text-align: center;
    font-size: 12px;
    line-height:1.1;
    font-family:'Helvetica', serif;
    }

figure {margin-bottom: 50px;}

.container {
    display: flex;
    justify-content: space-between;
}

.table-container {
    flex: 1; 
}

.float-table th,
.float-table td {
    border: 1px solid black; 
    padding: 8px; 
    text-align: center; 
}
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
}
.hover-link:hover {
    color: darkgreen; 
}
img {width: 100%}

.table_container {
    display: flex;
    justify-content: space-between;
}

.text {flex:1;
    margin-right: 20px;}
.float-table {
    width: 300px;}
