/* Global styles */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.5;
  background-color: #aad1d9;
  color: #04080f;
}


* {
  cursor: url('images/cursor.png'), auto;
}

img {
  color: #04080f; /* Change to the desired color */
}

.my-image {
  color: #04080f; /* Change to the desired color */
}

a {
  text-decoration: none;
  color: #04080f;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Header styles */
header {
  background-color: #aad1d9;
  padding: 10px;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav li {
  margin: 0 10px;
}

nav a {
  font-weight: bold;
}

/* Main content styles */
.hero {
  background-image: url('hero-background.jpg');
  background-position: center;
  background-size: cover;
  color: #aad1d9;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero1 {
  background-image: url('hero-background.jpg');
  background-position: center;
  background-size: cover;
  color: #110B11;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
}

.cta {
  background-color: #04080f;
  color: #aad1d9;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  margin: 10px;
}

/* Footer styles */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #aad1d9;
  color: #04080f;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
}

    
/* Styling for coordinate tracker */
#tracker {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 100px;
  height: 50px;
  background-color: #aad1d9;
  border: 0px solid #000;
  font-size: 9px;
  text-align: center;
  line-height: 50px;
}

/* Styling for clock */
#clock {
  position: fixed;
  top: 10px;
  right: 120px;
  width: 100px;
  height: 50px;
  background-color: #aad1d9;
  border: 0px solid #000;
  font-size: 9px;
  text-align: center;
  line-height: 50px;
}

/*animation text*/

#about-text {
  text-align: center;
  padding: 50px;
  font-size: 16px;
}

#typed-text {
  color: #110B11;
}
  
nav ul li a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #AAD1D9;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: #333;
}

@media screen and (max-width: 480px) {
  /* Styles for mobile devices */
  body {
    font-size: 22px;
  }

    /* Styles for script text on mobile devices */
    .script-text {
      font-size: 16px;
 }
 .about-text, .typed-text {
  font-size: 36px;
}
#main-text {
  font-size: 16px;
  line-height: 1.3;
}
}
