
/* ========== GLOBAL STYLES ========== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* ========== HEADER/NAVBAR ========== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #002e5f;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {

  height: 60px;
  width: 125px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: white;
  text-transform: capitalize;
  padding: 8px 12px;
  transition: background 0.3s;
}

.navbar ul li a:hover {
  background-color: #555;
  border-radius: 5px;
}

.fa-bars {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .navbar {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .fa-bars {
    display: block;
  }

  .content {
    padding: 10px;
  }

  h1 {
    font-size: 1.5rem;
  }
}

/* ========== MAIN CONTENT ========== */
.container {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.content {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}

.btn{
            margin-left: 2rem;
            outline: none;
            border: none;
            border-radius: 5rem;
            background: white;
            border-style: groove;
            border-color: #002e5f;
            font-size: 1.5rem;
            cursor: pointer;
            height: 6rem;
            width: 22rem;
            box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);

}
.btn:hover{
    letter-spacing: .0rem;
    opacity: .9;
    color: rgb(0, 0, 0);
    background: #0ff;
}

