/* Reset + Font */
* {
  font-family: "Ubuntu", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Body */
body {
  background-image: linear-gradient(to right, #01022d, #000);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Container */
.container {
  background-image:
    linear-gradient(to right, #01022de5 30%, #00000088),
    url("./img/download.webp");
  background-size: cover;
  background-position: center;
  width: 90%;
  height: 640px;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container:hover {
  background-image:
    linear-gradient(to right, #01022de5 30%, transparent),
    url("./img/download.webp");
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

/* Navigation */
header ul {
  display: flex;
  list-style: none;
}

header ul li {
  margin: 0 15px;
}

header ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  transition: color 0.3s;
}

header ul li a:hover {
  color: #1e90ff;
}

/* Hero Section */
.hero {
  max-width: 500px;
  margin: 50px 0 0 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero button {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #1e90ff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero button:hover {
  background: #0d6efd;
}
