/* 
    example for add font:
    
    @font-face {
        font-family: 'fontName';
        src: url("./fontName.ttf") format("truetype");
    }
    
    use:
    
    font-family: 'fontName';
 */
 
html {
    font-size: 100%;
}
body {
    background: linear-gradient(90deg, #1abc9c 20%, #2980b9 80%);
    margin: 7% 5% 5% 5%;
}
h1 {
    background-color: green;
    color: white;
    border-radius: 4px;
    margin: 0px 0px 0px 0px;
    text-shadow: black;
    text-shadow: 10px;
    width: 100%;
    font-size: 1.2rem;
    padding-top: 1%;
    padding-bottom: 1%;
}
h3 {
    color: rgb(121, 120, 120);
    font-size: 0.8rem;
}
ul li {
    color: black;
    font-weight: bold;
    font-size: 0.8rem;
}
hr {
    display: block;
    unicode-bidi: isolate;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: 10em;
    margin-inline-end: 10em;
    overflow: hidden;
    border-style: inset;
    border-width: 1px;
    opacity: 50%;
}
ul li span {
    font-weight: normal;
    color: rgb(78, 78, 78);
}

.MyButton {
    background-color: #7c73e6;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    padding: 1%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box {
    background: white;
    margin-bottom: 1%;
    padding-bottom: 2%;
    border-radius: 4px;
}

/*
    - by @DearAhmadi
    - Join the: @DarkMindsTm
*/