html {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

body{
    padding:1% 8%;
}

h1 {
    margin:auto 0px;
    text-align:center;
    font-size: clamp(5vw, 100px, 10vw);
    white-space: nowrap;

    display:block;
    width:100%;
}

h2 {
    background-color: black;
    color:white;

    border-radius: 50px;

    width:max-content;

    padding:5px 15px;
}

.menu-link {
    font-weight: bold;

    background-color: white;
    color:black;
    border:2px solid black;
}

.menu-link, h2 {
    margin: 8px 0px;
}

.menu-link:hover {
    color:gray;
    border:2px solid gray;
}

.menu-link a {
    color: inherit;
    text-decoration:none;
}

.menu-link a:active {
    color: inherit;
}

h1:after {

    background-image:url(char1.png);
    background-size: 100% 100%;
    width:1.5em;
    height:1.5em;
    margin-right: 10px;
    content: "";
    
    display:inline-block;

    vertical-align: middle;
    background-size: 100% 100%;
    top: 25%;

    right:1em;
    position: relative;
    opacity: 0.2;
    z-index: -1;
}

ul {
    list-style-type:none;
}

a {
    color:grey;
    text-decoration: underline;
    text-decoration-style: dotted;
}

a:hover {
    text-decoration-style: dashed;
    font-weight:bold;
}

a:active {
    text-decoration-style: solid;
    color:black;
}

.grey {
    color:grey;
}

.bt{
    font-size:11px;
}