p {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

nav {
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    width: fit-content;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.highlight {
    background-color: yellow;
    font-weight: bold;
}

.warning {
    color: red;
    font-size: 1.2em;
}

#main-title {
    color: blue;
    text-align: center;
}

#special-title {
    font-family: 'Times New Roman', Times, serif;
    color: darkred;
    text-align: center;
}

.boxing-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


h2.special-title {
    font-family: 'Courier New', Courier, monospace;
    color: purple;
    text-shadow: 1px 1px 2px gray;
    text-align: center;
}

a:hover {
    color: orange;
    text-decoration: underline;
}

button:active {
    background-color: #555;
    color: white;
}

.description {
    text-align: center;
}