* {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
	outline: none;
	color: #fff;
}

html,body,.container,.overlay {
    width: 100%;
    height: 100%;
}

.container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoEnter 1s;
    background: url('https://bing.gabrlie.cn') no-repeat;
    background-size: cover;
}


@media screen and (orientation:portrait) {
	.overlay {
        background: url('https://bing.gabrlie.cn?resolution=mobile') no-repeat;
    }
}

.Gabrlie {
    max-height: 120px;
    transition: max-height 3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.onload {
    padding: 30px;
    border-radius: 8px;
}

.avatar {
    width: 120px;
    height: 120px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
    border-radius: 50%;
}

.info {
    animation: fadeIn 2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info>* {
    text-align: center;
    color: #fff;
}

.subtitle {
    line-height: 30px;
    font-weight: 100;
    font-size: 18px;
}

.line {
    width: 80%;
    border-top: 1px solid rgba(255,255,255,0.14);
    margin: 20px;
}

.extra-button {
    position: absolute;
    top: 110%;
    display: flex;
    gap: 16px;
}

.extra-button a {
    padding: 8px 20px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    word-break: keep-all;
}

 /* 淡入-从下 */
 @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
