box-sizing: border-box; /* Corrected selector */
}

html {
  background-color: ivory;
}

body {
  font-family: 'Times New Roman', serif; /* Added proper font-family syntax */
}

/* Style the header */
header {
  background-color: darkred;
  padding: 5px;
  text-align: center;
  font-size: 25px;
  color: white;
}

h3 {
  background-color: ivory;
  color: darkred;
  text-align: center;
}

/* Create two columns/boxes that float next to each other */
.column1 {
  float: left;
  position: absolute;
  margin-right: -3px;
  top: 208px;
  width: 24%;
  height: 25%;
  background: ivory;
  border: 3px solid maroon;
  padding: 10px;
  padding-bottom: 15px;
  
}

nav a {
  display: block;
  text-align: center;
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 10px;
  background: ivory;
  border: 2px solid darkred;
}

nav a:hover {
  background-color: brown;
  color: ivory;
}

nav a.active {
  background-color: maroon;
  color: white;
}

nav ul {
  list-style-type: none;
  padding: 0px;
}
 
.column2 {
  display: flexbox; 
  position: relative;
  float: right;
  width: 58%;
  margin-left: 15px;
  height: 35%;
  top: 0px;
  font-size: 18pt; 
  font-weight: 300; 
  color: darkred;
}

p {
  font-size: 13pt;
}

.column2 li {
  font-size: 13pt;
}

input {
  display: block;
  float: right;
  font-size: 12pt;
  border: 1px solid black;
  margin-top: 5px;
  width: 180px;
}

section::after {
  content: "";
  display: table;
  clear: both;
}

.row {
    display: flex;
    float: right;
    margin: auto;
    padding-right: 210px;
    padding-top: 15px;
}

.column img {
  display: block;
  float: right;
  border: 2px solid darkred;
  height: 200px;
}

.desc {
  text-align: center; 
  font-size: 12pt; 
  border: 2px solid black;
}

table {
  width: 100%;
  margin-right: 35px;
  background-color: ivory;
  border: 3px darkred solid;
  color: darkred;
  border-bottom: 5px;
}

th {
  border-top: 5px;
  text-decoration: underline;
  padding: 10px;
  padding-left: 10px;
  border: 3px darkred ridge;
}

tr {
  padding-bottom: 10px;
}

td {
  border: 3px darkred ridge;
  padding: 2px;
  font-size: 14pt;
  font-weight: normal;
  padding-bottom: 2px;
  height: 15px;
}

aside p {
  position: relative;
  width: 24%;
  height: 20%;
  float: left;
  margin-top: 50px;
  bottom: -225px;
  padding-left: 5px;
  margin-left: 2px;
  font: 'Times New Roman', serif; 
  font-size: 13pt;
  background-color: ivory;
  border: 2px solid darkred;
}


.columna {
  float: left;
  position: relative;
  top: 6px;
  width: 20%;
  background: ivory;
  border: 3px solid maroon;
  padding: 10px;
}

.columnb {
  float: right;
  width: 30%;
  margin-top: -18px;
  margin-right: -35px;
  padding: 10px;
  height: 300px; 
}

.columnc {
  float: none;
  margin-top: -10px;
  width: 50%;
  padding: 10px;
  height: 300px; 
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: right;
  padding: 0px;
  margin-right: 10px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

#column-contact ul {
  text-align: left;
  font-family:monospace;
  color: darkred;
  background-color: ivory;
  width: 310px;
  padding-bottom: 5px;
  font-size: 16px;
}
  
.columnb img {
  position: absolute;
  opacity: 1.0;
  width: 350px;
  border: 1px solid black;
}

.columnb img:hover {
  opacity: 0;
  transition: .5s ease;
}
  
p {
  font-weight: normal;
  color: darkred;
  font-size: 12pt;
  font-family: 'Times New Roman', Times, serif;
}

footer {
  background-color: ivory;
  bottom: -6px;
  text-align: left;
  position: relative;
  clear: both;
}
