* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    height: 60px; /* Adjust as needed */
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links span {
    margin-right: 50px;
    font-weight: 600;
    font-size: 1.1em;
    color: white;
}

.social-link {
    margin-right: 70px;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #2E73EA;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('blake-unsplash.jpg') no-repeat center center/cover;
    position: relative;
}

.coming-soon {
    font-size: 5em;
    font-weight: bold;
    text-align: center;
    animation: fadeInOut 3s infinite;
}

body {
    height: 100vh;
    margin: 0;
    animation: cursor 1s ease infinite;
  }
  
  @keyframes cursor {
      7% {cursor: crosshair}
      14% {cursor: help}
      21% {cursor: move}
      28% {cursor: pointer}
      35% {cursor: progress}
      42% {cursor: text}
      49% {cursor: wait}
      56% {cursor: n-resize}
      63% {cursor: ne-resize}
      70% {cursor: e-resize}
    77% {cursor: se-resize}
      84% {cursor: s-resize}
      91% {cursor: sw-resize}
      98% {cursor: w-resize}
      100% {cursor: nw-resize}
  }

  

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-links {
        font-size: 1em;
    }

    .coming-soon {
        font-size: 2em;
    }
}
