* {
    box-sizing: border-box;
}
/*Base*/
body {
    background-color: rgb(179, 198, 161);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 30px;
    color: white;

}
/*Grid*/
article{ 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}
/*Assignment Cards*/
fieldset{
    background-color: rgb(145, 198, 145);
    border-color: rgb(97, 132, 31);
    border-width: 3px;
    border-style: solid;
    text-align: left;
    color:rgb(255, 255, 255);
}
.Audio{
    background-color: rgb(145, 198, 145);
    border-color: rgb(97, 132, 31);
    border-width: 3px;
    border-style: solid;
    text-align: left;
    color:rgb(255, 255, 255);
}
/*Bio*/
p{
   width:900px;
}
/*Links*/
cite a {
    color:rgb(45, 47, 45);
    text-align: center;

}

cite a:hover {
    color: rgb(179, 255, 65);
    text-decoration:underline;
}