* {
  margin: .3rem;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background-image: linear-gradient(to bottom, #baaacd, #c29dc2, #eed3e6);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #035a31;
}

div.r1-columns {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 0.3rem;
}

div.header{
  text-align: right;
}

.header-title {
  font-size: 3rem;
  color: #035a31;
  margin: 0;
}

div.r2-columns {
  display: grid;
  grid-template-columns: 15% 70% 15%;
  gap: 0.3rem;
}

div.navbar {
  background-color: #f0e6f6;
  border: 2px solid #035a31;
  border-radius: 5px;
  padding: 0.5rem;
  text-align: center;
}

div.navbar a {
  text-decoration: none;
  color: blueviolet;
  font-weight: bold;
}

div.navbar a:hover {
  color: #035a31;
  text-decoration: underline;
}

div.main-content {
  text-align: center;
}

.logo img {
  max-width: 100px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #035a31;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

button {
  background-color: #035a31;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  color: lightblue;
  background-color: blueviolet;
}

/* slideshow styles */
.mySlides {
  display: none;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  text-align: center;
}

/* next and previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}

.prev:hover, .next:hover {
  color: lightblue;
}

/* caption text */
.caption {
  color: white;
  font-size: 1rem;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* dots, bullets */
.dot {
  cursor: pointer;
  height: 9px;
  width: 9px;
  margin: 0 2px;
  background-color: blueviolet;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: lightblue;
}

/* fade animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.coming-content {
  text-align: center;
}

.r6-columns {
  display: grid;
  grid-template-columns: 15% 70% 15%;
  gap: 0.3rem;
}

.footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f0e6f6;
  border: 2px solid #035a31;
  border-radius: 5px;
}

hr {
  border: 0;
  height: 1px;
  background: blueviolet;
  margin: 1rem 0;
}