body {
  font-family: Arial, sans-serif;
  margin: 20px; 
  text-align: center;
}

p {
  margin: 50px 100px;
  font-family: 'Spectral';
  font-size: 20px;
  color: rgb(75, 0, 105);
  background-color: #efb9fac6;
  border: 1px solid #efb9fac6;
  padding: 20px; 
}

.fixed-image {
  display: flex;
  position: fixed;
  flex-direction: row;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  justify-content: space-between;
  z-index: 999;
  background: #eee;
  max-width: 19%; /* adjust the value to your liking */
  height: 190px; /* set the height to match the nav padding */
}

.fixed-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

nav ul {
  list-style: none;
  position: fixed;
  margin: 0;
  top: 0px;
  padding: 70px;
  display: flex;
  justify-content: space-between;
  background-color: #dda0dd;
  color: purple;
  width: 100%;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

nav li {
  margin-right: 20px;
}

nav a {
  color: purple;
  text-decoration: none;
  border: 1px solid purple; 
  padding: 30px 50px;
}

nav a:hover {
  color: #ba67e3;
  background-color: #fff;
  border-color: rgb(186, 103, 227);
}

.small-font {
  font-size: 20px;
  font-family: 'Spectral';
  font-weight: bold;
}

.big-font {
  font-size: 40px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  display: inline;
}

.title-section {
  text-align: center;
  top: 100px;
  margin-top: 250px; 
  margin-bottom: 100px;
  padding: 40px; 
  background-color: #f9f9f9;
  border: 1px solid #f9dbff;
  border-radius: 10px;
  box-shadow: 0 0 20px #f9dbff;
}

.title-section h1 {
  font-family: 'League Spartan';
  font-weight: bolder;
  font-size: 120px; 
  color: #953db2;
  margin-bottom: 20px;
  letter-spacing: 10px;
}

.title-section h2 {
  font-size: 36px; 
  font-weight: normal;
  font-family: 'Spectral';
  color: rgb(231, 189, 248);
  font-style: italic;
  margin-bottom: 30px; 
}

h3 {
  color: darkorchid;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 80px;
  margin-bottom: 30px; 
}

h5 {
  color: rgb(229, 155, 229);
  font-family: 'Times New Roman', Times, serif;
  font-size: large;
  font-style: oblique;
  margin-bottom: 10px; 
}

.btn {
  font-family: 'Spectral';
  font-size: large;
  font-weight: bolder;
  background-color: white;
  color: purple;
  padding: 20px 30px;
  border: 4px solid;
  border-color: purple;
  box-shadow: 0 0 20px #cf76cf;
  cursor: pointer;
  margin: 20px;
}


.btn:hover {
    color: white;
    background-color: #efb9fac6;
    border: 4px solid;
    border-color: white;
  }

footer {
  background-color: #f7f7f7; 
  padding: 20px; 
  text-align: center; 
  position: static;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0px;
  margin-top: 100px;
  background-color: white;
  border: 5px solid #f9dbff;
  box-shadow: 0 0 20px #f9dbff;
  box-sizing: border-box;
}

footer.show {
  transform: translateY(0);
}

a img {
  width: 150px;
  height: 150px;
  margin-right: 10px;
}