

a {text-decoration: none;}
ul {list-style-type: none;}

html {
    font-size: 1.1em;
}

body {
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 3em;
}

.centered-content {
    max-width: 1000px;
    margin: auto;
    width: 70%;
    margin-top: 15px;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    color: rgb(60,60,60);
}

h1,h2{
    font-variant: small-caps;
}

h1 {
    color: rgb(80,100,240);
    font-size: 170%;
}
h2 {
    color: rgb(110,130,255);
}



a{
    color: rgb(60,60,60);
}
a:hover {
    color: red;
}

/** MENU */ 
nav {
    text-align: right;
}
  
  
nav a {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    color: gray;
}


.bracket-link a:before, .bracket-link a:after{
    padding-left: 5px;
    padding-right: 5px;
    color: gray;
}
.bracket-link a:before{
    content: "[";
}
.bracket-link a:after{
    content: "]";
}


.justify {
    text-align: justify;
}








ul.plan li {
    font-weight: bold;
}

ul.plan ul li {
    font-weight: normal;
    font-style: italic;
}

p {
    text-align: justify;
}


.sub-plan ul{
    padding-left: 0;
}

.sub-plan a:before{
    content: "[ ";
}
.sub-plan a:after{
    content: " ]";
}