body {
  background: #ebedec;
  color: #2db569;
  min-height: 100vh;
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;*/
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  display: flex;
  /*flex-direction: column;*/
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background-image: url('https://default.seohost.pl/bg.svg');*/
  opacity: 0.6;
  z-index: -1;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
	height:100%;
	width: 100%;
	position:absolute;
}

/* GĹĂłwna ikona domeny */
.domain-icon {
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out;
}

.domain-icon img {
	border: none;
	height: 50vh;
	width: auto;
	margin: 0 auto;
	margin-top: 20vh;
	background-size: contain;
	display: flex;
	position: relative;
	animation: float 4s ease-in-out infinite;
	filter: drop-shadow(0 0 30px rgba(45, 181, 105, 0.4));
	object-fit: contain;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-20px); 
  }
}

/* Sekcja domeny */
.domain-section {
  margin-bottom: 4rem;
  animation: fadeInDown 0.8s ease-out 0.3s both;
  display: flex;
  justify-content: center;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.domain-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 1rem 2rem;
  display: inline-block;
  position: relative;
  color: #cf3c18;
  /*text-transform: uppercase;*/
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.5rem;
  z-index: 10;
}

/* Responsywność */
@media only screen(max-width: 768px) {
  img {
    width: 240px;
  }
  
  .domain-title {
    font-size: 2rem;
  }
  
  .domain-title::before,
  .domain-title::after {
    width: 30px;
    height: 30px;
  }
}

@media only screen(orientation: portrait){
	img{
		width: 40vw;
		height: auto;
		margin: 0 auto;
		display: flex;
	}
}

@media only screen(max-width: 480px) {
  img {
    width: 240px;
  }
  
  .domain-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}

@media only screen(mix-width: 768px) {
  img {
    width: 240px;
	height: 70%;
	position: relative;
  }
  
  .domain-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}