body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
}

section {
    background-color: #f7f7f7;
    padding: 2em;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin-bottom: 20px;
}

img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

video {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
    clear: both;
}

.slide {
    width: 300px;                                                                                                                                                                                                                                                                                                                                                                                                                                       
}

.features, .about {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features ul {
    list-style-type: none;
    padding: 0;
}

.features li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.fire-fire {
    font-size: 48px;
    font-weight: bold;
    color: #FF0000;
    text-shadow: 
     0 0 10px #FF8000,
     0 0 20px #FF0000;
    animation: burn 2s linear infinite;
}

@keyframes burn {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}

.three-d-text {
    font-size: 120px;
    font-weight: bold;
    color:#333;
    text-shadow:
     1px 1px 0 #ccc,
     2px 2px 0 #ccc,
     3px 3px 0 #ccc;
}

.hatchy {
    width: 500px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-method {
    margin: 20px;
    text-align: center;
  }
  
  .contact-method i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #337ab7;
  }
  
  .method-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .method-detail {
    font-size: 14px;
    color: #666;
  }
  
  /* Responsive design */
  
  @media only screen and (max-width: 768px) {
    .contact-info {
      flex-direction: column;
    }
    .contact-method {
      margin: 10px 0;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .contact-method i {
      font-size: 18px;
    }
    .method-title {
      font-size: 14px;
    }
    .method-detail {
      font-size: 12px;
    }
  }
  