@charset "UTF-8";
html,body{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body *{
    box-sizing: border-box;
    user-select: none;
}
body{
    color: #503A38;
}
body a{
    color: inherit;text-decoration: none;
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 640px;
    padding: 20px;
}
.dot{
    margin-left:0.5em;
    margin-right:0.5em
}
.dot::before{
    content:'·'
}
.fa-text{
    width: fit-content;
}