/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  
  color: #fff;
 
 
}

.container {
  text-align: center;
  padding: 20px;
}

.logo {
  width: 100px;
  height: 100px;
 
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  min-width: 70px;
}

.countdown span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
}

.countdown small {
  font-size: 0.8rem;
  color: #aaa;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-links img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer {
  font-size: 0.9rem;
  color: #888;
}
.content h1 {
    color: #1e224f;
    font-weight: 700;
} 
.content p {
    color: gray;
}
.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
    background-color: #d9edf7;
}
.phoe-icon svg {
    width: 4%;
    fill: #1e224f;
}
.content h3 {
    color: #1e224f;
    font-size: 22px;
}
.content a {
    color: gray;
    text-decoration: none;
}
.phoe-icon {
    margin-top: 20px;
    margin-bottom: 14px;
}



@media only screen and (max-width: 600px) {  

.phoe-icon svg {
    width: 10%; 

} 


}