@import url('./layout.css');
@import url('Thero.css');
@import url('cards.css');
@import url('nav.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
 }
.Main{
    background-color: #cddeee;
} 

article{
    padding: 30px;
}
figure{
    display: flex;
    justify-content:center;
    align-items:center;
    flex-direction: column;
}
figure img{
    width: 50%;
    height: auto;
    border: 3px solid #01271a;
    border-radius: 5px;
}

figcaption{
    text-align: center;
    font-size: 15px;
}
.name{
    font-size: 20px;
    font-weight: bold;
}

.author{
    display: flex;
    flex-direction: column;
    padding: 15px;

}
.SideBar  li{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    display: inline;
    text-decoration: none;
    color: #000000;
    font-size: 20px;
}
.SideBar a:hover {
    background-color: #8aa8a4;
    border-radius: 5px;
    padding: 15px 15px;
    text-align: center;
}
.share{
    text-align: center;
}
.share img:hover{
    cursor: pointer;
    border-radius: 5px;
    padding: 15px 15px;
    width: 50px;
}
article li{
    color: #460303;
}
.bold{
    font-style: oblique;
}
.italic{
    font-style: italic;
}