	
    
body {
		background: rgba(27, 5, 29, 0.9);
		margin: 0;
		font-family: Fredoka, sans-serif;
        color:#FFFFFF;
	}



/* Header Bereich */

header {
    background: rgba(31, 5, 47, 0.6);
    height: 80px;
    padding: 0 20px;
}

.header-content {
    align-items: center;
    max-width: 1200px;
    justify-content: space-between;
    display: flex;
    margin: 0 auto;
}

.Studio p {
    color: #FFFFFF;
    font-size: 20px;
    padding: 10px 50px 10px 5px;
}

.Navigation {
  display: flex;
  gap: 30px;
  align-items: center;
  font-family: 'Fredoka', sans-serif;
}

.Navigation a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 16px;
  transition: background-color 0.3s, color 0.3s;
}

.Navigation a:hover {
  color: #c3a8ff;
}


.Navigation .Contact-Button {
  background-color: #856BEF;
  border-radius: 10px;
  padding: 12px 24px;
  color: white;
  text-align: center;
}

.Navigation .Contact-Button:hover {
  background-color: #a48eff;
}



/* Footer Bereich */


footer {
  margin-top: 100px;
  padding: 60px 80px;
  background-color: #2d1a35;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: normal;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #e4daf1;
}

.footer-column ul li a {
  color: #e4daf1;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.social-icons img:hover {
  transform: scale(1.1);
}




