﻿/*
Author: Siae
Author URI: https://siae.me
Description: Homepage
Version: 1.0
*/

@font-face {
    font-family: Zpix;
    src: url(../font/Zpix.ttf);
    /* src: url(../fonts/Raleway\ Thin.ttf); */
}

*{
    margin: 0;
    padding: 0;
}

html,body{
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABFklEQVRYR9WXURLDIAhE6/0PbSdOtUpcd1Gnpv1KGpTHBpCE1/cXq+vrMph7dGvXZTtpfW10DCA5jrH1H0Jhs5E0hnZdCR+vb5S8Nn8mQCeS9BdSalYJqMBjAGzq59xAESN7VFVUgV8AZB/dZBR7QTFDCqGquvUBVVoEtgIwpQRzmANSFHgWQKExHdIrPeuMvQNDarXe6nC/AutgV3JW+6bgqQLeV8FekRtgV+ToDKEKnACYKsfZjjkam7a0ZpYTytwmgainpC3HvwBocgKOxqRjehoR9DFKNFYtOwCGYCszobeCbl26N6yyQ6g8X/Wex/rBPsNEV6qAMaJPMynIHQCoSqS9JSMmwef51LflTgCRszU7DvAGiV6mHWfsaVUAAAAASUVORK5CYII=),auto;
    height:100%;
}

html{
    position: relative;
}

body{
	font-family: "Zpix";
	-webkit-font-smoothing: antialiased;
	display: flex;
    align-items: center;
    justify-content: center;
}

.container,.background{
	position: absolute
}

.background{
    /* background-image: url(https://i.loli.net/2021/05/30/vA7q5uefiwUQ3O8.jpg);*/
	background-image: url(https://www.dmoe.cc/random.php);
	/* background-image: url(../image/fj.webp); */
     
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: auto;
    transform: scale(1.1);
    filter: blur(20px);
}

.container{
    background: #fff;
    border-radius: 23px;
    margin: 15px;
}

.container .content {
	padding: 1em;
	/* background-image: url(https://i.loli.net/2021/05/30/vA7q5uefiwUQ3O8.jpg); */
	/* background-image: url(../image/fj.webp); */
	background-image: url(https://www.dmoe.cc/random.php);
	background-position: center;
	background-size: cover;
	border-radius: 20px 20px 0 0;
	text-align: center;
	box-shadow: inset 0 -70px 100px -50px rgba(0,0,0,.5);
}
.container .content p{
    margin-top: -2em;
    font-size: 30px;
    letter-spacing: .5px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,.7);
    font-weight: 500;
}

.container .info {
    text-align: center;
    border-radius: 0 0 20px 20px;
    padding: 1em;
}

.container .info p{
    font-size: 14px;
}

.container .info h1{
    margin-top: -0.3em;
    margin-left: 1em;
    margin-bottom: 0.3em;
	font-size: 25px;
	letter-spacing: .5px;
	text-shadow: 1px 1px 1px rgba(0,0,0,.7);
	font-weight: 300;
}

.picture{
    top:-5em;
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    user-select: none;
}

.sns {
    padding: 12px 0;
    user-select: none;
}
.sns a{
    height: 32px;
    width: 32px;
    display: inline-block;
    background-position: center;
    background-size: cover;
}
.sns a + a {
    margin-left: 14px;
}

.twitter{
    background-image: url(../image/IXmfpoynkqhCLYi.png);
}

.blog{
    background-image: url(../image/yFInBsmw27SEfuV.png);
}

.telegram{
    background-image: url(../image/qcuft5XvQp3kFBO.png);
}

.github{
    background-image: url(../image/s7Uq9OkEjVhPbne.png);
}

.footer {
	margin-bottom: -1em;
    font-size: 10px;
    color: #b3b3b3;
    width: 100%;
}

@keyframes shake {
	from,to {
		transform: translate3d(0,0,0)
	}

	10%,30%,50%,70%,90% {
		transform: translate3d(-10px,0,0)
	}

	20%,40%,60%,80% {
		transform: translate3d(10px,0,0)
	}
}

.shake {

    animation: shake .7s ease-out
}