
/* Element selector*/
p{
    font-size: medium;
    text-align: center;
}
h2{text-align: center;}
/* Class selector*/
.bold{
    font-weight: bold;
}


/* ID selector */
#main-title{
    text-align: center;
    color: cornflowerblue;
    text-shadow: 1px 1px 3px rgb(60, 59, 59);
}


/* Attribute selector */
a [href="ign"]{ 
    color: aqua; 
    font-weight: bold;
}

/* Descendent selector*/
.header h3{
    color: darkblue;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

/* Child selector */
.list > li {
    display: inline-block;
    color: cadetblue;
    margin-right: 70px;
    
    padding: 8px 14px;
}

