@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');
* {
    box-sizing: border-box;
    font-family: 'M plus 1' , sans-serif;
    user-select: none;
    outline: none;
    text-decoration: none;
}
body {
    background: #fdfdfd;
    margin-top: 70px;
    padding: 10px;
    * {color: #333;}
}
main, .fmain {
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
a {
    font-weight: 800;
    color: orange;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    img {
        height: 15px;
    }
}
.fmain {
    padding: 20px;
}
.normals {
    padding: 20px;
    h2 {
        color: #333;
        border-left: 10px solid orange;
        padding-left: 20px;
        font-weight: 900;
        font-size: 30px;
        margin: 0;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

hr {
    border: none;
    border-top: 2px dashed orange;
    margin: 0;
}
/**/
footer {
    position: absolute;
    left: 0;
    right: 0;
    background: orange;
    margin-top: 20px;
}

.morebtn {
    background: orange;
    color: #fff;
    padding: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .normals {
        padding: 20px 0;
    }
}