/* --- Global Styles --- */
body {
  background: url('/images/webBG.png') no-repeat fixed center/cover;
  margin: 0;
}

/* --- Navigation --- */
.nav {
  overflow: hidden;
  background-color: white;
}

.nav a {
  float: left;
  color: DarkSlateGray;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav a:hover {
  background-color: DarkSlateGray;
  color: white;
}

#home {
  float: left;
  height: 5%;
}

/* --- Content Sections --- */
.card{
  margin: 16px;
  overflow-y: scroll;
  background-color: white;
  width: 25%;
  height: 25%;
}

#about-me {
  text-align: center;
}

#recent-art img {
  display: block;
  margin: 0 auto;
  width: 50%;
}

/* --- Header --- */
#heading {
  text-align: center;
  overflow: hidden;
  background-color: white;
}

#top-text {
  color: white;
  font-size: 40px;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

/* --- Animation --- */
@keyframes rotateAnimation {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
