/* Text */

body  {

  color: white;
  font-size: 22px;
}

h1.a {
  color: #000C7B;
  padding-bottom: 50px;
  padding-top: 50px;
  padding-left: 35px;
}

footer {
  margin: 50px;
  margin-top: 50px;
  font-family: "Courier Prime", normal;
  font-weight: 400;
  font-style: normal;
}

p.a {
  padding: 50px;
}

header, body, pre, .courier-prime-regular {
  font-family: "Courier Prime", normal;
  font-weight: 400;
  font-style: normal;
}

img.a {
  float: left;
}

/* Link color */

a {
  color: #ff00ea;
}

/* Buttons */
#button {
  height: auto;
  width: auto; 
  padding: 1%;
  background-color: #fffaea;
  text-align: center;
  font-size: relative;
  border-width: 7px;
  border-style: outset;
  border-color: #a7ecff;
  box-shadow:  7px 7px 7px 7px #ff00eaa9, 3px 3px 3px 4px #ff00ea;
  margin: 1%;
  align-items: center;
  justify-self: center;
  float: left;
}


.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 15%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

.clear {
    clear: left;
}

/* Body text */
#leftalignphotostext {
    color:navy;
    font-size: 22px;
    padding: 5px;
    text-align: left;
}

/* P A R T S */
main {
  background-color: #000C7B;
  min-height: 500px;
  display: flex;
  flex-flow: wrap;
  min-width: 500px;
}

aside:nth-child(1) {
  flex: 0 0 50px;
  background-color: #005e98;
  min-width:5%;
}

aside:nth-child(3) {
  flex: 0 0 50px;
  background-color: #005e98;
  min-width: 5%;
}

article {
  flex: 1 0 auto;
  background-color: #a7ecff;
  min-width: 500;
  padding-left: 3px;
  padding-top: 3px;
  padding-top: 3px;
  padding-bottom: 3px;
  
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;

}

footer {
  background-color: #fffaea;
  min-height: 150px;
}

/* Comment Form Styling */
#commentForm {
  background: #000C7B; /* White background for the form */
  padding: 30px;
  border-radius: 3px; 
 
  margin-bottom: 20px;
  border: 1px solid blue; 
  width:50%;
}

#commentForm input[type="text"],
#commentForm input[type="url"],
#commentForm input[type="website"],
#commentForm textarea {
  color: #001aff;
  /* Full width */
  
  padding: 6px;
  margin-bottom: 6px;
  border: 3px solid #ff00ea; /* Light border */
  border-radius: 4px; /* Slightly rounded edges */
  font-size: 16px;
  background-color:#ffbee2;
  
}

#commentForm textarea {
  resize: none; /* Allow vertical resizing */
  min-height: 100px; /* Minimum height */
  width: 100%;
  
}

#commentForm button {
  background: #ffbee2; /* pink button */
  color: navy; /* text */
  border: solid #ff00ea 3px;
  padding: 10px 20px;
  border-radius: 4px;
  
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 16px;
  transition: background 0.3s ease; /* Smooth hover effect */
}

#commentForm button:hover {
  box-shadow: #ff00ea 1px 1px 9px 1px;
  border: solid #ff00ea 3px; 
  color: #ff00ea;

}
/* Comments Display Styling */
#comments {
  margin-top: 20px;
}
.comment {
  background: #ffbee2; /* Pink background for each comment */
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px #ff00ea; /* Subtle shadow */
  margin-bottom: 15px;
  border: 1px solid #ff00ea; /* Light border */
  width:50%;
}


.comment h3 {
  margin: 0 0 10px; /* Space below the name */
  font-size: 18px;
  color: navy; /* Blue name */
}

.comment p {
  margin: 0 0 10px; /* Space below the comment */
  font-size: 16px;
  color: #001aff; /* Slightly lighter text for comments */
}

.comment small {
  display: block; /* Make timestamps and links block-level */
  font-size: 10px;
  color: navy; /* Light gray for metadata */
}

.comment a {
  color: blue; /* Blue link */
  text-decoration: none; /* No underline */
  transition: color 0.3s ease; /* Smooth hover effect */
}

.comment a:hover {
  color: #ff00ea; /* Pink on hover */
  text-decoration: underline; /* Underline on hover */
}

/* Responsive Design */
@media (max-width: 600px) {
  #commentForm input[type="text"],
  #commentForm input[type="url"],
  #commentForm textarea {
    font-size: 14px; /* Smaller font on mobile */
  }

  .comment h3 {
    font-size: 16px; /* Smaller name on mobile */
  }

  .comment p {
    font-size: 14px; /* Smaller comment text on mobile */
  }
}