body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #333;
    color: #fff;
}
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
main {
    background: #333;
    text-align: center;
    padding: 2rem;
    color: #fff;
}
.logo {
  max-width: 10%; /* Ensure it doesn’t exceed the parent container */
  height: auto;    /* Maintain aspect ratio */
}
.scaling-svg{
  position: absolute;
 height: 100%;
 left: 0;
 top: 0;
 fill:#FFF;
 -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
  filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
}

.scaling-svg2{
  position: absolute;
 height: 100%;
 right: 0;
 top: 0;
 fill:#817fbc;
 -webkit-filter: drop-shadow( 3px 3px -2px rgba(0, 0, 0, .7));
  filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
}
.center{
  vertical-align: middle;
  color: white;
  text-align: center;
  top: 50%;
  left:50%;
  display: table-cell;
  margin: 0 auto;
  max-width: 90%; /* Allow content to shrink within the viewport */
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 0.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

a{
  text-decoration:none;
  color:white;

}
a:hover{
  /*color:blue;*/
  -webkit-animation-name: example; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
    animation-name: example;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
    from {color: : white;}
    to {color: #fdbb2d;}
}

/* Standard syntax */
@keyframes example {
    from {color: white;}
    to {color: #fdbb2d;}
}

h1 {
  font-size: 2em; /* Responsive font size */
}

h4 {
  font-size: 1.2em;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

form button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}
