/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
    body {
        font-family: Times New Roman;
        color: black;
        line-height: 1.6;
    }

    nav {
        background: #9c766b;
        padding: 0.5rem;
        display: flex;
        justify-content: left;
        align-items: left;
        flex-wrap: wrap;
        gap: 0.5rem;
     }

    nav button {
    background-color:#9c766b;
    display:flex;
    position: left;
    margin:1rem;
    text-decoration:none;
    }

    main {
    max-width: 800px;
    margin: auto;
}
footer {
        background: #9c766b;
        color: black;
        text-align: center;
        padding: 1rem;
        margin-top: 2rem;
    }

.card {
  padding: 12px;
  border-radius: 14px;
  background-image:url("../src images/entropicdestructionbackground.jpg");
  border: 3px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease;
  position: right;
  margin: 1rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}
.section-title {
    margin: 1rem 0 1rem;
    color:#000000;
    font-style: bold;
    text-decoration: underline;
}
.info {
    margin: 2rem 0;
    list-style-type: disc;
    font-style: bold;
    padding-left: 1.5rem;
}
