* {
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: #333;
  margin: 0;
  padding: 0;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  line-height: 1.8;
}

header {
  background: linear-gradient(90deg, #2c347d, #1a1f4d);
  color: #ffffff;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

section {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}
.a {
  display: flex;
}
.a1 {
  width: 50%;
}
.a2 {
  width: 80%;
  margin: auto;
  text-align: right;
  margin-right: 50px;
  margin-top: 20px;
}
h1 {
  padding: 20px 0;
  color: #ffffff;
  font-size: 2.5em;
  animation: glowText 1.5s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 10px #ffffff;
  }
  to {
    text-shadow: 0 0 20px #e3aa38, 0 0 30px #e3aa38;
  }
}

.highlight {
  color: #ffffff;
  font-weight: bold;
  background: linear-gradient(90deg, #2c347d, #1a1f4d);
  padding: 5px 8px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(44, 52, 125, 0.8);
}

h2 {
  text-align: center;
  color: #2c347d;
  padding-bottom: 15px;
  font-size: 2em;
  font-weight: bold;
  font-style: italic;
  text-decoration: underline;
}

h3 {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #2c347d;
  font-size: 1.5em;
  padding-left: 30px;
  text-decoration: underline;
}

blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #2c347d;
  padding-left: 15px;
  margin: 20px 0;
  font-size: 18px;
  background: #f4f4f4;
  border-radius: 5px;
}

p {
  line-height: 1.8;
  font-size: 1.1em;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 0%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

td,
th {
  border: 1px solid #2c347d;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  outline: 1px solid white;
  outline-offset: -2px;
}

tr:nth-child(odd) {
  background-color: #dddddd;
}

table tr:hover {
  background-color: #e3aa38;
  color: white;
  transition: 0.4s ease-in-out;
  transform: scale(1.02);
}

th {
  background: linear-gradient(90deg, #2c347d, #1a1f4d);
  color: beige;
}

thead tr th {
  text-align: center;
}

footer {
  background: linear-gradient(90deg, #2c347d, #1a1f4d);
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

#link {
  color: #25086e;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

#link:hover {
  color: #e3aa38;
}

li {
  text-decoration: solid;
  margin-bottom: 5px;
  padding-left: 10px;
}

li::marker {
  color: #2c347d;
  font-size: 1.2em;
}
.container {
  display: flex;
}
.sub-container-one {
  width: 50%;
  font-weight: bold;
}
li {
  margin-bottom: 20px;
}
.blinking {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sub-container-two {
  width: 30%;

  text-align: left;
  display: block;
  box-shadow: #1a1f4d;
}
#myImage {
  display: none;
}
@media screen and (max-width: 800px) {
  .container {
    display: flex;
    flex-direction: column;
  }
  .sub-container-one {
    width: 100%;
  }
  .sub-container-two {
    width: 100%;
    margin: auto;
    display: none;
  }
  #myImage {
    display: block;
  }
  li {
    margin-bottom: 5px;
  }
}
