* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    animation: fadeInUp 0.9s ease-out;
}

body {
    font-family: 'Verdana';
    background: white;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.content {
    text-align: center;
    max-width: 500px;
    padding: 40px 20px;
}

.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #666;
}

.construction-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: wobble 2s infinite;
}

h1 {
    font-size:40px;
    margin-bottom: 20px;
    color: #333;
}

.text {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #666;
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    margin: 20px 0;
    font-size: 20px;
}

.line {
    width: 100px;
    height: 2px;
    background: #ddd;
    margin: 30px auto;
}

@media (max-width: 768px) {
    .content {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 30px;
    }
    
    .text {
        font-size: 17px;
    }
    
    .contact-item {
        font-size: 17px;
    }
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(3deg); }
    45% { transform: rotate(-3deg); }
    60% { transform: rotate(2deg); }
    75% { transform: rotate(-1deg); }
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

