/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

/* Headings */
h1, h2, h3{
    color: #ff8c00;
    font-weight: bold;
    font-family: Georgia, serif;
}

/* Paragraphs */
p {
    font-size: 16px;
    font-style: normal;
    text-align: justify;
}

/* Unordered list */
ul {
    background-color: #e6f2ff;
    padding: 10px;
}

/* Ordered list */
ol {
    background-color: #fffbe6;
    padding: 10px;
}

/* Links - unvisited */
a:link {
    color: #0066cc;
    text-decoration: none;
}

/* Links - visited */
a:visited {
    color: #663399;
    text-decoration: underline;
}

/* Class selector example */
.highlight {
    background-color: #ffffcc;
    font-style: italic;
    padding: 5px;
}

/* ID selector example */
#main-title {
    font-size: 28px;
    color: #ff8c00; 
    font-weight: bold;
    text-align: center;
}

/* Content box styling */
.content-box {
    border: 2px solid #ccc;
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.beer-table {
    width: 100%; /* Table width */
    border-collapse: collapse;
    background-color: #fffbe6; /* Light background */
    color: #333; /* Text color */
}

.beer-table th,
.beer-table td {
    padding: 12px; /* Padding */
    border: 2px solid #ccc; /* Border for all cells */
    text-align: center;
}

.beer-table thead th {
    background-color: #ffd280; /* Header background */
    color: #000;
}
/* input styles */
input[type="text"],
input[type="email"] {
    background-color: #fffbe6;
    border: 1px solid #999;
    padding: 10px;
    border-radius: 5px;
    width: 60%;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

input[type="search"] {
    background-color: #f0f8ff;
    border: 2px dashed #ff9900;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* submit styles */
input[type="submit"] {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #cc7a00;
    text-decoration: underline;
}

/* fields styles */
fieldset {
    border: 2px solid #ffcc80;
    background-color: #fff7e6;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

legend {
    font-weight: bold;
    color: #cc6600;
    background-color: #fff3d6;
    padding: 4px 8px;
    border-radius: 4px;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff9900;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    background-color: #cc7a00;
}
.profile-pic {
    float: left;
    width: 150px;
    height: auto;
    margin: 0 20px 20px 0;
    border-radius: 8px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
}
body {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255,255,255,0.8)),
        url("images/background.png");}
* {
  font-family: Arial, Verdana, sans-serif;
  color: #4a3f35;
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#nav, #feature, .article, #footer {
  background-color: #fff7e6; /* soft warm background */
  margin-top: 20px;
  padding: 10px 0 5px 0;
  border-radius: 6px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.05);
}

#feature, .article {
  min-height: 100px;
  padding: 15px;
}

li {
  display: inline;
  padding: 5px 10px;
  font-weight: bold;
}

a {
  color: #ff9900;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #cc7a00;
}
Header, section, footer, aside, nav, article, figure, figcaption {
  display: block: }
.back-button {
  display: inline-block;
  background-color: #ff9900;
  color: #ffffff;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
  background-color: #cc7a00;
  text-decoration: underline;
}


