/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: #767675;
}

a.active,
a:hover {
  color: #2474a7;
}

ul {
  list-style: none;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  align-items: center;
  background-image: url("./images/home.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Header styles */
.header {
  padding: 5% 5%;
  z-index: 99;
}

.logo img {
  width: 80%;
  max-width: 300px;
}

/* App download section */
.main {
  padding: 5%;
}

.app-content {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.app-info-title {
  font-size: 50px;
  color: #fff;
  font-weight: 500;
}

.app-info-desc {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

/* Footer styles */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.footer-links {
  padding: 0 5%;
  color: #fff;
  font-size: 14px;
}
