@charset "utf-8";

body {
    min-height: 100vh;
    margin: 0;
    padding: 0 1em;
    color: white;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    color: white;
    text-decoration: none;
}

.copyright a{
    border-bottom: 1px dashed;
}

a:hover{
    border-bottom: 1px dashed;
}

h1 {
    font-weight: 100;
    margin: 1em 0;
}

.watch-container {
    text-align: center;
}

canvas {
    border-radius: 50%;
    border: 4px double goldenrod;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.copyright {
    margin: 3rem 0;
    line-height: 2;
    font-weight: 200;
    opacity: 0.5;
	font-size: 0.85em;
	opacity: 0.5;
	transition-duration: 0.3s;
}
.copyright:hover{
	opacity: 1;
}
.detail {
    max-width: 800px;
    line-height: 2;
}

.detail h2{
    margin: 1.5em 0;
    font-size: 30px;
}

.detail .gua-icon {
    margin-top: 1rem;
    font-size: 200px;
    line-height: 1;
}

.detail .gua-name {
    font-size: 60px;
    line-height: 1;
    font-weight: 100;
    margin: 0;
}

.detail .gua-detail,
.detail .yangsheng-tip {
    margin: 2rem;
}

.zhujie:after {
    content: "注";
    font-size: 14px;
    line-height: 1.5em;
    height: 1.5em;
    width: 1.5em;
    margin-top: -0.5em;
    vertical-align: super;
    background: white;
    color: black;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    transition-duration: 0.3s;
    transform: scale(0.75);
}

.zhujie:hover:after{
    transform: scale(1);
}

@media screen and (max-width: 425px) {
    canvas {
        zoom: 0.8;
    }

    .gua-icon {
        font-size: 100px;
        line-height: 1;
    }

    .gua-name {
        font-size: 30px;
        line-height: 1;
        font-weight: 100;
        margin: 0;
    }
	.zhujie{
		border-bottom: 1px dashed;
	}
	.zhujie:after{
		display: none;
	}
}