body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* Banner */
.banner {
  position: relative;
  height: 260px;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* All headings */
h1 {
  font-size: 50px;
  margin: 8px 0;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.cursive {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 500;
}

.rect {
  width: 150px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.flower {
  width: 65px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  animation: rotate 8s linear infinite;
}

/* Scroll Content */
.scroll-strip {
  overflow: hidden;
  white-space: nowrap;
  background: white;
  color: black;
  padding: 14px 0;
  display: flex;
  width: 100%;
}

.scroll-content {
  display: flex;
  gap: 40px;
  animation: scroll-right 15s linear infinite;
  animation-play-state: paused;
}

.scroll-content span {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 28px;
  font-weight: bold;
}

.scroll-content img {
  height: 26px;
}

.scroll-strip:hover .scroll-content {
  animation-play-state: running;
}

/* Projects section */
.projects-main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  padding: 30px 18px;
  background-color: black;
  box-sizing: border-box;
}

.proj-col {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 10px;
  color: black;
}

.proj-col h2 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: bold;
}

.proj-col ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.proj-col li {
  margin-bottom: 10px;
}

.proj-col a {
  color: black;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.proj-col a:hover {
  text-decoration: underline;
}

.footer-section {
  background-color: white;
  color: black;
  padding: 35px 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks {
  font-size: 26px;
  margin: 0 0 18px 0;
}

.footer-lines {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-name, .footer-contact {
  margin: 0;
  font-size: 17px;
}

.contact-link {
  color: black;
  text-decoration: underline;
}

.contact-link:hover {
  opacity: 0.7;
}

.p1 { background-color: #FF9704; }
.p2 { background-color: #AD8AFF; }
.p3 { background-color: #AEF243; }
.p4 { background-color: #FF6569; }

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}  

@keyframes scroll-right {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(100%);
  }
}