body{
    background-color: hsl(312, 100%, 89%);
}

header{
    background-color: rgb(236, 95, 187);
    
}

main{
    background-color: rgb(255, 147, 217);
    
}

footer{
    background-color: rgb(236, 95, 187);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 15px;
}

/*Tools*/

h1{
    font-family: 'Courier New', Courier, monospace;
    color: rgb(66, 10, 119);
    font-size: 40px;
}

a{
    color: black;
    font-family: 'Courier New', Courier, monospace;
    font-size: 25px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(189, 59, 143);
}

ul li {
  float: left;
}

ul li a, ul li a:visited {
  display: block;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 14px 16px;
}

ul li a:hover, ul li a:active {
  background-color: #9b0b7e;
}

.link-theme:hover {
  background-color: #af158e;
}

.link-border {
    background-color: #f431cd;
    height: 50px;
    width: 100px;
    border-style: solid;
    border-color: #9b0b7e;
    clear: none;
}

.container{
  width: 100%;
  height: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.links-container{
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

.hero{
    border: 4px;
    border-style: solid;
    border-color: #9b0b7e;
    padding: 15px;
    background-image: url(assets/cherries.jpg);
}

p{
    font-size: 20px;
}

.links-container a{
    width: 250px;
}

.content{
    padding: 20px;
}

p:first-child{
    color: darkblue;
}

p:nth-child(2){
    color: #af158e;
}
p:last-of-type{
    color: blueviolet;
}

p:nth-of-type(3){
    font-size: larger;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 20%;
  background-color: aliceblue;
  float: left;
  margin-bottom: 50px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.container {
  padding: 2px 16px;
}