#articles {
  margin-top: 30px;
  display: flex;
  margin-left: 3%;
  margin-bottom: 50px;

}

article {
  margin-right: 3%;
  width: 52%;
}
/* General rules for all the webpages (index.html & contact.html)*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: "helvetica";
  font-size: 14px;
  line-height: 1.5;
  padding-top: 30px;

}

#homelogo {
  margin-left: 35%;
  margin-top: 2%;
  margin-bottom: 40px;
}


.menuitem {
  display: inline;
  padding: 14px 16px;
  text-decoration: none;
  color: #40A3C1;
}

.menuitem:hover {
  background-color: #405FC1;
  padding: auto;
  color: #ffffff;
  border-radius: 5px;
}


#menuitem:visited {
  color: #40A3C1;
  text-decoration: none;
}


.footeritem,
.footeritem:visited {
  text-decoration: none;
  color: #ffffff;
}

footer {
  background-image: linear-gradient(to bottom right, #40A3C1, #405FC1);
  color: #ffffff;
  opacity: 0.8;
}


/*Rules for the homepage (index.html)*/

img {
  width: 33.3333%;

}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

#slideshow {
  display: flex;
  margin-top: 20px;
  width: 100%;
}

#aboutus {
  padding-top: 50px;
  padding-bottom: 50px;
  align-items: center;
  display: flex;
  background-image: linear-gradient(to bottom right, #40A3C1, #405FC1);
  padding-left: 20%;
  color: #ffffff;
}

#bio {
  width: 52%;
  text-align: justify;
}

#biopic {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin-right: 6%;
}

#FAQs {
  border-top: dotted #405FC1 0.5px;
  justify-items: center;
  padding-top: 20px;
}

#grad1 {
  height: 200px;
  background-image: linear-gradient(to bottom right, #40A3C1, #405FC1);
}

#questions {
  margin-top: 20px;
  justify-items: center;
}

#info {
  display: flex;
}

#quotes {
  padding-top: 30%;
  background-image: linear-gradient(to bottom right, #405FC1, #40A3C1);
  padding-right: 10%;
  padding-left: 10%;
  text-align: center;
  justify-items: center;
  color: #ffffff;
}

#quotelink {
  margin-top: 7%;
  color: #ffffff;
  font-size: 20px;
  text-transform: capitalize;

}

.articlepic {
  width: 450px;
  height: 400px;
  border-radius: 7px;
  animation: zoomIn 0.5s;
  transition: transform 0.5s ease;
  cursor: pointer;

}

.articlepic:hover {
  transform: scale(1.1);
  opacity: 0.5;
}

.faq {
  text-align: center;
  margin-bottom: 3%;
  width: 70%;
}

.number {
  color: #40A3C1;
}

h3 {
  color: #405FC1;
}

.new {
  margin-top: 20px;
  cursor: pointer;
}

li {
  display: inline;
  padding: 14px 16px;
  text-decoration: none;
  color: #ffffff;
}


/*Rules for the contact webpage*/

#contactflex{
  display: flex;
  margin-left: 4%;
  margin-bottom: 4%;
  margin-top: 4%;
}

#contact{
    padding-right: 10%;
  padding-left: 5%;
  width: 70%;
}

#infoitems{
  padding-top: 7%;
}

#contacttitle {
  padding-top: 15%;
  color: #40A3C1;
}