html, body, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

header {
    font-size: 19px;
    font-weight: 600;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,.14);
    color: rgba(0,0,0,.6);
    font-family: "Product Sans",Arial,Helvetica,sans-serif;
    background: #00000008;
}

header .info {
    display: flex;
    justify-content: space-between;
    margin: 60px;
    width: 100%;
}

header * {
    align-items: center;
}

header .name a:nth-child(1) {
    font-family: Myanmar Text !important;
    text-shadow: 0 0 3px #00000047;
    height: 100%;
}

/* header .name a:nth-child(1):before {
    content: '.';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 63px;
    top: 9px;
    color: red;
    text-shadow: 0 0 3px #00000047;
} */

a {
    color: rgba(0,0,0,.6);
    font-family: "Product Sans",Arial,Helvetica,sans-serif;
    text-decoration: blink;
}

.container {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}

body>.container {
    min-height: calc(100vh - 210px);
}

footer {
    background-color: black;
    height: 100px;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.footer-info {
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer a {
    color: white;
    font-size: 12px;
}

footer .container {
    margin: 20px 10px;
}



header .name {
    margin-top: 8px;
}

@media (max-width: 800px) {
    header {
        height: 60px;
    }

    header .info {
        /* margin: 10px; */
        margin-left: 10px;
    }

    header .name {
        margin-top: 0px;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
        height: 40px;
    }

    header .name a {
        border: 1px solid #e5e5e5;
        padding: 5px 10px;
        border-radius: 5px;
    }

    header .name a:nth-child(1) {
        font-family: Myanmar Text !important;
        /* padding-top: 6px; */
        padding-bottom: 0;
        /* padding-top: 0px; */
        height: 100%;
        padding-bottom: 39px;
    }

    header .name a:nth-child(1):before {
        left: 24px;
        top: -1px;
    }

    header .name a:hover {
        background-color: #e5e5e5;
    }
}