/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background-image: url(resources/bgtest.png);
    font-family: verdana;
    color: #000000;
    font-weight: lighter;
    font-size: 12px;
    max-width: 1400px;
}

/* Example: Custom image and position */
ul {
  list-style-type: circle;
  list-style-position: outside;
}

/* Example: Using ::marker for color and size */
ul li::marker {
  color: #e44e4e;
}

a:link, a:visited {
  color: #e44e4e;
  text-decoration: none;
}
a:hover {
  color: #eebf85;
  text-decoration: line-through;
}

h1 {
  font-family: "Verdana", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #f11445;
  text-align: left;
  margin: 0;
  padding: 10px 0;
}

h2 {
  font-family: "Verdana", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #f11445;
  text-align: left;
  margin: 0;
  padding: 10px 0;
}

.box {
background:#f7f2da;
padding: 5px;
margin: 5px;
border:1px dashed #bb3b3b;
}

.extralinks a {
display:inline-block;
color:#f7f2da;
width:200px;
background:#e44e4e;
padding-left:5px;
padding-bottom:3px;
letter-spacing:3px;
margin-bottom:2px;
}
  
.extralinks a:hover {color:#eebf85;}

#header {
  background-image: url(resources/lychee1200.png);
  position: relative;
  margin: 10px;
  padding: 5px;
  height: 180px;
  width: 1180px;
}

.column {
  float: left;
  padding: 5px;
}

.left {
  width: 25%;
  background-image: url(resources/bgcolumn.png);
  padding-left: 5px;
}

.right {
  width: 25%;
  background-image: url(resources/bgcolumn.png);
  padding-left: 5px;
}

.middle {
  width: 47%;
  background-image: url(resources/bgcenter.png);
}

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

/* Modern responsive approach */
iframe {
    width: 200px;
    height: 250px;
    border: none; /* Removes default border */
    border-radius: 8px; /* Optional visual styling */
}