/* 
  Copyright 2026 Dilloco. All rights reserved.
*/
/*Start of GREEEN*/
.header {
  background: linear-gradient(
    to bottom,
    #a8ff2a,
    #32cd32
  );
  color: white;
  padding: 5px 25px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
  border-bottom: 1px solid #228b22;
}

.nav a:hover {
  color: #32cd32;
}

.card h2 {
  margin-bottom: 10px;
  color: #32cd32;
  text-shadow: 0 1px 0 #fff;
}

.primary-button {
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  border-radius: 6px;
  border: 1px solid #228b22;
  background: linear-gradient(
    to bottom,
    #a8ff2a,
    #32cd32
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 3px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}

.primary-button:active {
  background: linear-gradient(
    to bottom,
    #32cd32,
    #a8ff2a
  );
  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.3);
}

/* Start of orange */
.header {
  background: linear-gradient(
    to bottom,
    #ff9d4f,
    #ef5200
  );
  color: white;
  padding: 5px 25px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
  border-bottom: 1px solid #c45d00;
}

.nav a:hover {
  color: #ef5200;
}

.card h2 {
  margin-bottom: 10px;
  color: #ef5200;
  text-shadow: 0 1px 0 #fff;
}

.primary-button {
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  border-radius: 6px;
  border: 1px solid #c45d00;
  background: linear-gradient(
    to bottom,
    #ff9d4f,
    #ef5200
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 3px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}

.primary-button:active {
  background: linear-gradient(
    to bottom,
    #ef5200,
    #ff9d4f
  );
  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: url("https://frutigeraeroarchive.org/images/wallpapers/vectordelia/vectordelia_67.jpg"), #e6e6e6; background-size: cover;
  -webkit-background-size: cover;

  -moz-background-size: cover;

  -o-background-size: cover;
  color: #333;
}

.page {
  width: 960px;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}

/* Header */
.header {
  background: linear-gradient(
    to bottom,
    #4fd2ff,
    #00adef
  );
  color: white;
  padding: 5px 25px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
  border-bottom: 1px solid #008fc4;
}

.header h1 {
  font-size: 36px;
  margin-bottom: 6px;
}

.header p {
  opacity: 0.9;
}

/* Navigation */
.nav {
  background: linear-gradient(
    to bottom,
    #f7f7f7,
    #dcdcdc
  );
  border-bottom: 1px solid #bbb;
  padding: 12px 20px;
}

.nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #555;
  font-weight: bold;
  text-shadow: 0 1px 0 #fff;
}

.nav a:hover {
  color: #00adef;
}

/* Content */
.content {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #f4f4f4;
}

/* Cards */
.card {
  flex: 1;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #ededed
  );
  border-radius: 8px;
  padding: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid #ccc;
}

.card h2 {
  margin-bottom: 10px;
  color: #00adef;
  text-shadow: 0 1px 0 #fff;
}

.card p,
.card li {
  line-height: 1.6;
}

/* Button */
.primary-button {
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  border-radius: 6px;
  border: 1px solid #008fc4;
  background: linear-gradient(
    to bottom,
    #4fd2ff,
    #00adef
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 3px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}

.primary-button:active {
  background: linear-gradient(
    to bottom,
    #00adef,
    #4fd2ff
  );
  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  background: #eaeaea;
  color: #777;
  font-size: 13px;
  border-top: 1px solid #ccc;
}
/*Start of TEAL*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: url("bg.jpg"), #e6e6e6;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  color: #333;
}

.page {
  width: 960px;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}

/* Header */
.header {
  background: linear-gradient(
    to bottom,
    #3fe0d0,
    #00b3a4
  );
  color: white;
  padding: 5px 25px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
  border-bottom: 1px solid #009688;
}

.header h1 {
  font-size: 36px;
  margin-bottom: 6px;
}

.header p {
  opacity: 0.9;
}

/* Navigation */
.nav {
  background: linear-gradient(
    to bottom,
    #f7f7f7,
    #dcdcdc
  );
  border-bottom: 1px solid #bbb;
  padding: 12px 20px;
}

.nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #555;
  font-weight: bold;
  text-shadow: 0 1px 0 #fff;
}

.nav a:hover {
  color: #00b3a4;
}

/* Content */
.content {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #f4f4f4;
}

/* Cards */
.card {
  flex: 1;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #ededed
  );
  border-radius: 8px;
  padding: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid #ccc;
}

.card h2 {
  margin-bottom: 10px;
  color: #00b3a4;
  text-shadow: 0 1px 0 #fff;
}

.card p,
.card li {
  line-height: 1.6;
}

/* Button */
.primary-button {
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  border-radius: 6px;
  border: 1px solid #009688;
  background: linear-gradient(
    to bottom,
    #3fe0d0,
    #00b3a4
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 3px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}

.primary-button:active {
  background: linear-gradient(
    to bottom,
    #00b3a4,
    #3fe0d0
  );
  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  background: #eaeaea;
  color: #777;
  font-size: 13px;
  border-top: 1px solid #ccc;
}
/*Start of GREEN*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: url("https://frutigeraeroarchive.org/images/wallpapers/vectordelia/vectordelia_15.jpg"), #f4ffd6;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  color: #2e2e2e;
}

.page {
  width: 960px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}

/* Header */
.header {
  background: linear-gradient(
    to bottom,
    #C6FF00,
    #AEEA00
  );
  color: #130c8a;
  padding: 5px 25px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  border-bottom: 1px solid #8BC34A;
}

.header h1 {
  font-size: 36px;
  margin-bottom: 6px;
}

.header p {
  opacity: 0.9;
}

/* Navigation */
.nav {
  background: linear-gradient(
    to bottom,
    #f7f7f7,
    #dcdcdc
  );
  border-bottom: 1px solid #b6d957;
  padding: 12px 20px;
}

.nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #130c8a;
  font-weight: bold;
}

.nav a:hover {
  color: #8BC34A;
}

/* Content */
.content {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(
    to bottom,
    #f7f7f7,
    #dcdcdc
  ); color: #130c8a;
}

/* Cards */
.card {
  flex: 1;
  background: linear-gradient(
    to bottom,
    #f7f7f7,
    #dcdcdc
  );
  border-radius: 8px;
  padding: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid #cde97a;
}

.card h2 {
  margin-bottom: 10px;
  color: #130c8a;
}

.card p,
.card li {
  line-height: 1.6;
}
.card:hover {border: 1px solid #130c8a;}
/* Button */
.primary-button {
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
  border-radius: 6px;
  border: 1px solid #7CB342;
  background: linear-gradient(
    to bottom,
    #C6FF00,
    #AEEA00
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 3px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.primary-button:active {
  background: linear-gradient(
    to bottom,
    #AEEA00,
    #C6FF00
  );
  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  color: #130c8a;
  font-size: 13px;
  border-top: 1px solid #cde97a;
  background: linear-gradient(
    to bottom,
    #f7f7f7,
    #dcdcdc
  );
}