body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Georgia', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    display: flex;
    width: 90%;
    max-width: 1400px;
    justify-content: space-between;
    align-items: center;
  }
  
  .left {
    flex: 1;
    text-align: center;
  }
  
  .logo {
    width: 60px;
    margin-bottom: 20px;
  }
  
  .customwatch {
    font-size: 2.5em;
    letter-spacing: 2px;
    font-weight: normal;
    margin-bottom: 30px;
  }
  
  .links a {
    display: block;
    font-size: 1.4em;
    color: #fff;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
  }
  
  .links a:hover {
    color: #FFD700;
  }
  
  .right {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .watch-image {
    width: 90%;
    max-width: 600px;
    height: auto;
  }