@charset "UTF-8";

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body{
    width: 100%;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(112, 112, 112, 0.69);
}

main{
    text-align: justify;
    line-height: 25px;

    width: 300px;
    margin: 10px auto;
    padding: 20px 20px 5px 20px;

    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.368);
    background-color: white;
}

h2{
    font-size: 1.3em;
    margin: 20px 0 30px;
}

p{
    font-size: 16px;
    text-indent: 30px;
}

p span a{
    color: white;
}

hr{
    margin: 10px 0;
}

details{
    background-color: white;
    border-bottom: 2px solid rgba(0, 0, 0, 0.291);
}

details:last-child{
    margin-bottom: 15px;
}

summary{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;    
}

details[open] summary{
    color: red;
}

ol, ul{
    margin: 5px 0 10px 30px;
}

ul{
    list-style: none;
}

ul > li {
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 6px;
    background-color: rgb(208, 210, 208);
}

ul > li, ol > li{
    font-size: 14px;
}


a, a:active{
    color: rgba(3, 3, 194, 0.813);
    text-decoration: none;
}

a:hover{
    color: orange;
    text-decoration: underline;
}

a:active{
    color: red;
}