@font-face {
    font-family: 'Rubik Mono One';
    font-style: normal;
    font-weight: 400;
    src: local('Rubik Mono One Regular'), local('RubikMonoOne-Regular'), url(https://fonts.gstatic.com/s/rubikmonoone/v6/UqyJK8kPP3hjw6ANTdfRk9YSN98zTKUbcw.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin-ext */
@font-face {
    font-family: 'Rubik Mono One';
    font-style: normal;
    font-weight: 400;
    src: local('Rubik Mono One Regular'), local('RubikMonoOne-Regular'), url(https://fonts.gstatic.com/s/rubikmonoone/v6/UqyJK8kPP3hjw6ANTdfRk9YSN985TKUbcw.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Rubik Mono One';
    font-style: normal;
    font-weight: 400;
    src: local('Rubik Mono One Regular'), local('RubikMonoOne-Regular'), url(https://fonts.gstatic.com/s/rubikmonoone/v6/UqyJK8kPP3hjw6ANTdfRk9YSN983TKU.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    padding: 0;
    margin: 0;
    box-sizing:border-box;
    -moz-box-sizing:border-box; /* Firefox */
    -webkit-box-sizing:border-box; /* Safari */
    user-select: none;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width : 6px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 6px;
    box-shadow : inset 0 0 3px rgba(0, 0, 0, 0.2);
    background : rgb(50, 50, 50, 0.7);
}
::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow : inset 0 0 3px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background : rgb(1, 1, 1, 0.1);
}

html,
body {
    width: 100%;
    height: 100vh;
    padding: 0!important;
    margin: 0!important;
    overflow: hidden;
    font-family: 'Rubik Mono One', sans-serif;
    background: #22292C;
}

svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}


#canvas {
    position:fixed;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.wrap{
    width: 100%;
    height: 100vh;
    position:fixed;
    color: #efefef;
    overflow-y: auto;
    z-index: 1;
    background-color: rgb(1, 1, 1, 0.4);
    padding-bottom: 150px;
}

.title1 {
    width: 100%;
    text-align: center;
    font-size: 200%;
    margin-top: 50px;
    color: rgb(230, 230, 230, 0.8);
}

.title2 {
    width: 100%;
    text-align: center;
    font-size: 100%;
    margin-top: 20px;
    color: rgb(210, 210, 210, 0.85);
    font-style: italic;
}

.container{
    margin-top: 20px;
	width: 100%;
    text-align: center;
}

.container a{
	position: relative;
	display: inline-block;
	width: 140px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	margin: 40px;
	font-size: 20px;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
    border-radius: 20px;
    background-color: aquamarine;
    color: orange;
    font-weight: bold;
	/* 加发光效果和下面的倒影 模糊度加到50px */
	box-shadow: 0 0 50px aquamarine;
	/* below是下倒影 1px是倒影的元素相隔的距离  最后时渐变的颜色 */
	transition-delay: 0.4s;
    /** 动画 */
    animation-name: buttonBreath;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.container a::before,.container a::after{
	content: "";
	position: absolute;
	border: 1px solid aquamarine;
	transition: all 0.5s ease-in-out;
}

.container a:hover{
    background-color: green;
    color: orange;
	box-shadow: 0 0 50px green;
	/* below是下倒影 1px是倒影的元素相隔的距离  最后时渐变的颜色 */
	transition-delay: 0.4s;
    /** 动画 */
    animation-name: buttonBreath;
}

.container a:hover:before,.container a:hover::after{
	border: 1px solid green;
}

@keyframes buttonBreath{
    from {
        opacity: 1;
    }
    to{
        opacity: .5;
    }
}



.infos {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.info {
    cursor: pointer;
    width: 80%;
    max-width: 400px;
    text-align: left;
    font-family: sans-serif;
    display: inline-block;
    background-color: rgba(42, 4, 209, 0.4);
    font-size: 14px;
    font-weight: 400;
    padding: 10px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    color: #cdcdcd;
    /* 加发光效果和下面的倒影 模糊度加到50px */
	box-shadow: 0 0 10px rgb(49, 79, 212);
	-webkit-box-reflect: below 1px 
	linera-gradient(transparent,rgba(0,0,0,.3));
	/* below是下倒影 1px是倒影的元素相隔的距离  最后时渐变的颜色 */
	transition-delay: 0.4s;
}
