body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #4d79ff; 
}
header {
    background: linear-gradient(135deg, #0033cc, #0052cc);
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);

}
.long-shadow {
    font-size: 3rem;       
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    text-align: center;
    margin: 40px 0;
      text-shadow:
      3px 3px 0 #002080,
      6px 6px 0 #002080,
      9px 9px 0 #002080,
      12px 12px 0 #002080,
      15px 15px 0 #002080,
      18px 18px 0 #002080,
      21px 21px 0 #002080,
      24px 24px 0 #002080,
      27px 27px 0 #002080,
      30px 30px 0 #002080;
  }
  

nav {
    background-color: #0052cc;
    padding: 12px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1.2rem;
}

nav ul li a:hover {
    color: #ffcc00;
}


main {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background-color: #3a5fc8; 
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

h1, h2 {
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-transform: capitalize;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);

}

p {
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.6;
}

a[href*="github"], a[href*="coming"]{
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
}

a[href*="github"]:hover, a[href*="coming"]:hover{
    color: #ffd633;
    text-decoration: underline;
}


img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-top: 10px;
    text-transform: uppercase;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #1e3ca8;
    color: white;
    font-size: 1rem;
}

input[type="submit"] {
    background-color: #0033cc;
    color: white;
    padding: 12px;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.1rem;
}

input[type="submit"]:hover {
    background-color: #ffcc00;
    color: black;
    transform: scale(1.05);
}

ul, ol {
    padding-left: 25px;
    font-size: 1.1rem;
}

ul li {
    list-style-type: square;
    padding: 5px 0;
}

ol li {
    list-style-type: decimal;
    padding: 5px 0;
}

dl {
    margin: 15px 0;
}

dt {
    font-weight: bold;
    text-transform: capitalize;
}

dd {
    margin-left: 25px;
}


footer {
    text-align: center;
    background: linear-gradient(135deg, #0033cc, #0052cc);
    color: white;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.highlight {
    background-color: yellow;
    font-weight: bold;
    color: black;
}

#intro {
    font-size: 1.3rem;
    color: #dfe6ff;
}
.error {
    color: #ffcc00;
    font-size: 0.9rem;
    margin-left: 5px;
  }
button,
input[type="submit"] {
  background-color: #0033cc;   
  color: white;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 6px;          
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-size: 1.1rem;
  width: 100%;                 
}

button:hover,
input[type="submit"]:hover {
  background-color: #ffcc00;  
  color: black;
  transform: scale(1.05);     
}

