body {
  background-color: LightSkyBlue;
  font-family: "Helvetica", sans-serif;
  color: purple;
}
h1 {
  color: orange;
  font-family: "Times New Roman", serif;
  
}
ol {
  color: green;
}

nav ul {
  padding: 0.5em;
  display: flex;
  flex-direction: column;
}
nav ul li {
  text-align: center;
  list-style-type: none;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

nav ul {
  background-color: tomato;
  border-style: solid;
  border-color: MediumVioletRed;
  border-width: 2px;
  padding: 10px;
  border-radius: 100px;
  display: flex;
  justify-content: space-around;
}

nav ul li {
  list-style-type: none;
  margin-right: 10px;
  margin-left: 10px;
  color: PapayaWhip;
  
}

.topDivider {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #F5FFFA;
  padding-bottom: 10px;
}

.stylishBox {
  background-color: #87CEFA;
  color: #A52A2A;
  border-style: solid;
  border-width: 2px;
  border-color: #F5FFFA;
  border-radius: 10px;
}

.someSpacing {
  padding: 10px;
  margin-top: 20px;
}

img {
  border: 2px solid White;
}
img:hover {
  border: 2px dashed Navy;
}

.tinyPicture {
  height: 60px;
  border-radius: 10px;
}
.card {
  width: 200px;
  height: 200px;
  border: 2px solid #F0FFFF;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
  font-family: "Trebuchet MS", sans-serif;
  margin-left: auto;
  margin-right: auto;
}
.card:hover {
  border-color: #1E90FF;
}

#myCoolText {
  color: #003366;
  border: 2px ridge #ccffff;
  padding: 15px;
  text-align: center;
  animation-name: rainbowGlow;
  animation-duration: 1.5s;
  animation-iteration-count: 5;
}

#frontPage {
  background: repeating-linear-gradient(-45deg, red 0%, yellow 7.14%, lime 14.28%, cyan 21.42%, cyan 28.56%, blue 35.7%, magenta 42.84%, red 50%);
  background-size: 600vw 600vw;
  animation: slide 10s infinite linear forwards;
}

#border {
  border-radius: 100%;
}

#titoPicture {
  width: 300px;
  border-radius: 100%;
  animation-name: myFirstAnimation;
  animation-duration: 2s;
  animation-iteration-count: 1;
}

@keyframes myFirstAnimation {
  from {
      width: 100px;
  }
  to {
      width: 300px;
  }
}

@keyframes rainbowGlow {
  0% {
      color: #FFD700;
  }
  50% {
      color: #663399;
  }
  100% {
      color: #FFD700;
  }
}

@keyframes slide {
  0% {
      background-position-x: 0;
  }
  100% {
      background-position-x: 600vw;
  }
}

@media all and (min-width: 300px) {
  nav ul {
      flex-direction: row;
      justify-content: space-around;
  }
}






/**********************************
This section is for styling tables
***********************************/
table, th, td {
  border: 1px solid HoneyDew;
  border-collapse: collapse;
}
tr {
  background-color: PaleTurquoise;
}
th, td {
  vertical-align: top;
  padding: 5px;
  text-align: left;
}
th {
  color: purple;
}
td {
  color: purple;
}
/********************************/