/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Prompt', sans-serif;
    background-color: #fff;
    color: #102d65; /* dark blue color */
    text-align: center;
	
	
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;
    overflow: hidden;
	
	/* animated-background*/
	
    }
    .background {
        position: fixed;
        width: 100%;
        height: 100%;


    }
    
    .floating-logo {
        position: absolute;
        bottom: -100px;
        width: 50px;
        height: 50px;
        background-image: url('./img/icon.webp');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.3;
        animation: float 8s infinite ease-in-out;
    }
    
    .floating-logo:nth-child(2) {
        left: 10%;
        animation-duration: 7s;
        animation-delay: 2s;

        width: 30px;
        height: 30px;
    }
    
    .floating-logo:nth-child(3) {
        left: 20%;
        animation-duration: 9s;
        animation-delay: 4s;

        width: 45px;
        height: 45px;
    }
    
    .floating-logo:nth-child(4) {
        left: 30%;
        animation-duration: 6s;
        animation-delay: 1s;

        width: 15px;
        height: 15px;
    }
    
    .floating-logo:nth-child(5) {
        left: 40%;
        animation-duration: 10s;
        animation-delay: 3s;

        width: 15px;
        height: 15px;
    }
    
    .floating-logo:nth-child(6) {
        left: 50%;
        animation-duration: 8s;
        animation-delay: 2s;

        width: 60px;
        height: 60px;
    }
    
    .floating-logo:nth-child(7) {
        left: 60%;
        animation-duration: 7s;
        animation-delay: 5s;

        width: 10px;
        height: 10px;
    }
    
    .floating-logo:nth-child(8) {
        left: 70%;
        animation-duration: 9s;
        animation-delay: 4s;

        width: 20px;
        height: 20px;
    }
    
    .floating-logo:nth-child(9) {
        left: 80%;
        animation-duration: 6s;
        animation-delay: 1s;

        width: 15px;
        height: 15px;
    }
    
    .floating-logo:nth-child(10) {
        left: 90%;
        animation-duration: 10s;
        animation-delay: 3s;

        width: 30px;
        height: 30px;
    }
    
    @keyframes float {
        0% {
            bottom: -100px;
            opacity: 0.3;
            transform: translateX(0);
        }
        50% {
            opacity: 0.5;
            transform: translateX(10px);
        }
        100% {
            bottom: 100vh;
            opacity: 0;
            transform: translateX(-10px);
        }
    }
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.header {
    margin-bottom: 20px;
}

.logo {
    max-width: 550px;
	/*animation */

    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes flipInX {
    0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
    }
    40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    }
    60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
    }
    80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    }
    @keyframes flipInX {
    0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
    }
    40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    }
    60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
    }
    80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
  }

.main-content {
    margin-bottom: 30px;
}

.company-name {
    font-size: 2.5rem;
    color: #102d65;
}

.company-details {
    font-size: 1.5rem;
    color: #102d65;
    margin-top: 10px;
	
	/* adress animation 1

	-webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes zoomIn {
  0% {
  opacity: 0;
  -webkit-transform: scale3d(.3, .3, .3);
  transform: scale3d(.3, .3, .3);
  }
  50% {
  opacity: 1;
  }
  }
  @keyframes zoomIn {
  0% {
  opacity: 0;
  -webkit-transform: scale3d(.3, .3, .3);
  transform: scale3d(.3, .3, .3);
  }
  50% {
  opacity: 1; */

  -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  
  @-webkit-keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
}
  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

.company-details a {
    color: #102d65; /* granat color */
    text-decoration: none;
}

.footer {
    /*font-size: 0.9rem;
    color: #ffffff;
    margin-top: 20px;
	background-color: #102d65;
	width:100%;
	/* new code */
	/*margin-top: auto;
	height: auto;*/
	
	position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #102d65;
  color: #fff;
  text-align: center;
}

.footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .company-name {
        font-size: 2rem;
    }

    .company-details,
    .footer {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 300px;
    }
	.orange-line {
		max-height: 0.8rem;
	}
}
