/* ID selectors */

#footer {
  text-align: center;
  margin: 3%;
  padding-bottom: 5%;
}

/* standard html tag selectors */

body {
  font-family: "Jura", sans-serif;
  background-color: #f6f4e6;
  color: #222831;
}

h1 {
  font-size: 2.5rem;
}

h1,
h3 {
  font-weight: bold;
  color: #d5c455;
  text-align: center;
}

h2 {
  font-style: italic;
  font-weight: normal;
}

hr {
  line-height: 2rem;
  margin: 5% auto 5% auto;
  border-style: none;
  border-top-style: dotted;
  border-width: 10px;
  width: 6%;
  color: #dbdbdb;
}

/* class selectors */

.profile-img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  animation-name: spin;
  animation-duration: 60000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* row and col rules for html elements */

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 5%;
}

.col {
  width: 30%;
  text-align: center;
  margin: auto;
}

/* container for sections */
.container {
  text-align: center;
  width: 50%;
  margin: 6% auto 6% auto;
}

/* list row and col rules */

.listrow {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 2% auto 2% auto;
}
.listcol {
  width: 50%;
  text-align: left;
  margin: auto;
}

/* table row rules */
.tablerow {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2%;
}

/* homepage icon */

.homepage {
  margin: 3%;
  color: #d5c455;
}

.homepage:hover {
  color: #fddb3a;
}

/* contact me button */

.BUTTON_BQK {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #222831;
  font-family: "Jura", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 10px;
  background-color: #ede59a;
  border: solid #222831 3px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  margin-bottom: 2%;
}

.BUTTON_BQK:hover {
  background: #fddb3a;
  border: solid #222831 3px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-decoration: none;
}

/* copyright end line */

.copyright {
  margin: 3%;
}

.footer-icon {
  margin: 20px;
  color: #d5c455;
}

.footer-icon:hover {
  color: #fddb3a;
}

/* makes the profile image spin once a minute */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
