/* designed by Rolling-Wind */

* {margin: 0; padding: 0; box-sizing: border-box;}


@font-face {
    font-family: 'Lemon';
    src: url('../fonts/LEMONMILK-Regular.eot');
    src: url('../fonts/LEMONMILK-Regular.otf') format('embedded-opentype'),
         url('../fonts/LEMONMILK-Regular.woff') format('woff'),
         url('../fonts/LEMONMILK-Regular.otf') format('truetype'),
         url('../fonts/LEMONMILK-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0; 
    padding: 0;
    font-family: 'Lemon';
}

body{
    margin: 0;
    padding: 0;

    background-image: linear-gradient(125deg,#f78ca0,#9795f0,#F8C6D5,#fe9a8b,#f68084);
    background-size: 4000%;
    animation: bganimation 25s infinite;
    
    overflow:hidden;
    margin: 0;
    padding: 0;
    /* font-family: "montserrat"; */
    
}

body{
    display: flex;
    align-items: center; /*定义body的元素垂直居中*/
    justify-content: center; /*定义body的里的元素水平居中*/

    user-select:none;
}
#father_t{
    background-color: transparent;
    position:relative;
}

@keyframes bganimation {
    0%{
      background-position: 0% 50%;
    }
    50%{
      background-position: 100% 50%;
    }
    100%{
      background-position: 0% 50%;
    }
}

#love{
    background-color: rgba(223, 223, 223, 0.308);
    border-radius: 100%;
    width: 600px;
    height: 600px;
    top: 50%;
    /* margin:0 auto; */
    
    text-align: center;
    
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto; 
    transition: all 1.5s cubic-bezier(.87, .11, 1, .81);
    /* background-color: rgba(240, 97, 72, 0.616);  */
}
#love{
    display: flex;
    align-items: center; /*定义元素垂直居中*/
    justify-content: center; /*定义元素水平居中*/


    box-shadow: 0px 0px 150px #fde8e86c;
}
#inside_love_h1{
    font-weight: bold;
    line-height: 100px;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0px 0px 80px #fde8e86c;
    transition: all 2s cubic-bezier(.76, -0.6, .68, 1.56);
    
}

#inside_love_h2{
    color: rgba(255, 255, 255, 0.322);
    font-size: 60px;
	transition: all 1s cubic-bezier(.87, .11, 1, .81);
}
#inside_p{
    color: rgba(255, 255, 255, 0.322);
    font-size: 15px;
    transition: all 1s cubic-bezier(.87, .11, 1, .81);
}

/* #inside_love :hover{
    background-color: rgba(255, 207, 207, 0.2); 
    border-radius: 100%;
    cursor: pointer;
    
    width: 100px;
    transform: scale(2);
    box-shadow: 0px 0px 100px #ff859471;
    transition: all 1s ease-out;
} */



/* 手机端适配 */
@media screen and (max-width: 1080px) {

    body{
        
        margin: 0;
        padding: 0;
        background-image: linear-gradient(125deg,#a6c0fe,#d57eeb,#B8B2E3,#fccb90,#f68084);
        background-size: 4000%;
        animation: bganimation 30s infinite;
        
        overflow:hidden;
        margin: 0;
        padding: 0;
        /* font-family: "montserrat"; */
        
    }

    #love{
        background-color: rgba(223, 223, 223, 0.2);
        border-radius: 100%;
        width: 330px;
        height: 330px;
        top: 50%;
        /* margin:0 auto; */
        
        text-align: center;
        
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        margin: auto; 
        transition: all 1.5s cubic-bezier(.87, .11, 1, .81);
        /* background-color: rgba(240, 97, 72, 0.616);  */
    }
    #love{
        display: flex;
        align-items: center; /*定义元素垂直居中*/
        justify-content: center; /*定义元素水平居中*/


        box-shadow: 0px 0px 90px #fde8e86c;
    }


    #inside_love_h1{
        font-weight: bold;
        line-height: 80px;
        font-size: 60px;
        color: white;
        text-shadow: 0px 0px 40px #fde8e86c;
        /* color: #e7b05081; */
        transition: all 2s cubic-bezier(.76, -0.6, .68, 1.56);
        
    }

    #inside_love_h2{
        color: palevioletred;
        font-size: 50px;
    }
    #inside_p{
        color: rgba(255, 255, 255, 0.205);
        font-size: 11px;
        transition: all 1s cubic-bezier(.87, .11, 1, .81);
    }

    /* #inside_love :hover{
        background-color: rgba(255, 207, 207, 0.2); 
        border-radius: 100%;
        cursor: pointer;
        
        width: 100px;
        transform: scale(2);
        box-shadow: 0px 0px 100px #ff859471;
        transition: all 1s ease-out;
    } */
}