
body {
  background-color: #001632;
  color: #2C2C2C;
  font-family: Verdana;
}

ul {
  list-style-image: url("https://mtmchelle.neocities.org/bunpin.png");
}

/* unvisited link */
a:link {
  color: #F8B8AF;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #D7512E;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #01408D;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #96ADD6;
  text-decoration: none;
}

.red-text {
    color: #D7512E;
}

.rectangle {
  width: 600px;
  border: 2px solid;
  border-color: none;
  padding: 25px;
  margin-top: 100px;
  border-radius: 25px;
  background-color: #F2EFEA;
}

.grid-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 15px;
  align-items: center;
}

* {
  box-sizing: border-box;
  border-radius: 20px;
}

body {
  font-family: Verdana;
  padding: 20px;
  background: #001632;
}

.header {
  padding: 20px;
  font-size: 30px;
  text-align: center;
  background: #F2EFEA;
  color:#D7512E;
}


.leftcolumn {
  float: left;
  width: 75%;
}


.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}


.card {
  background-color: #F2EFEA;
  padding: 20px;
  margin-top: 20px;
  color: #2C2C2C;
}


.card2 {
  width: 70%;
  background-color: #F2EFEA;
  padding: 20px;
  margin-top: 100px;
  color: #2C2C2C;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
  color: #F2EFEA;
  background-color: #D7512E;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}