/* ==========================================
   Google Font
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Podkova&display=swap');

/* ==========================================
   Reset
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    width:100%;
    height:100vh;
    position:relative;
    background:linear-gradient(180deg,white,rgb(173,172,172),white);
    font-family:'Podkova',serif;
    overflow:hidden;
    user-select:none;
}

/* ==========================================
   Overlay
========================================== */

#startOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.88);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    cursor:pointer;
    transition:.6s;
}

#startOverlay.hide{
    opacity:0;
    visibility:hidden;
}

.overlay-content{
    text-align:center;
    color:#fff;
    animation:zoom 1.2s infinite alternate;
}

.overlay-content i{
    font-size:80px;
    margin-bottom:20px;
}

.overlay-content h2{
    font-size:32px;
    margin-bottom:10px;
}

.overlay-content p{
    opacity:.8;
}

@keyframes zoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

/* ==========================================
   Card
========================================== */

#container{
    width:320px;
    height:450px;

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    border-radius:50px;

    background:#fff;

    overflow:hidden;

    box-shadow:1px 10px 15px #c2bfbf;

    z-index:1;
}

/* ==========================================
   Cover
========================================== */

.photo_avt{
    width:100%;
    height:280px;
}

.photo_cover{
    max-width:320px;
}

.photo_cover video{
    width:100%;
}

.autoplay_video{
    position:absolute;
    user-select:none;
}

.autovideo1{
    opacity:0;
    z-index:5;
}

/* ==========================================
   Play Button
========================================== */

.playvideo_button{
    position:absolute;

    top:27%;
    left:60%;

    width:35px;
    height:35px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#d2d1d1;

    border-radius:10px;

    font-size:30px;

    box-shadow:0 5px 5px rgb(204,202,202);

    cursor:pointer;

    z-index:10;

    animation:zoomin 2s infinite;
}

.playvideo_button i{
    font-size:15px;
}

@keyframes zoomin{

    0%,100%{

        transform:scale(1);

        border-radius:10px;

        color:#000;

    }

    50%{

        transform:scale(.9);

        border-radius:12px;

        color:rgb(51,69,47);

        box-shadow:0 10px 10px rgb(159,157,157);

    }

}

/* ==========================================
   Avatar
========================================== */

.avatar{
    position:absolute;
    top:30%;
    left:6%;
    z-index:6;
}

.avatar img{
    width:90px;
    height:90px;
    border-radius:50%;
    border:3px solid #fff;
    outline:none;
    object-fit:cover;
}

/* ==========================================
   Messenger Button
========================================== */

.button_message{
    position:absolute;
    top:41%;
    right:10%;

    width:100px;
    height:30px;
}

.button_message button{
    width:100%;
    height:100%;

    border:none;
    outline:none;

    border-radius:14px;

    background:#000;
    color:#fff;

    font-size:15px;

    font-family:-apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;

    cursor:pointer;

    transition:.25s;
}

.button_message button:hover{
    opacity:.8;
}

/* ==========================================
   Name
========================================== */

.name{
    position:absolute;
    top:50%;
    width:100%;
}

.fullname{
    margin-left:15px;

    font-family:-apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
}

.fullname h2{
    display:inline-block;
    font-size:24px;
}

.fullname i{
    color:#11a9fb;
    font-size:16px;
    margin-left:4px;
}

.fullname p{
    margin-top:4px;
    opacity:.8;
    font-size:14px;
}

/* ==========================================
   Title
========================================== */

.title{
    width:100%;
    height:60px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.title p{
    line-height:24px;
    font-size:18px;
}

/* ==========================================
   Social Links
========================================== */

.link_web{
    width:100%;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.icon{
    width:65%;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.ico{
    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:27px;

    cursor:pointer;

    transition:.3s;
}

.ico a{
    color:#000;
    text-decoration:none;
}

.ico:hover{
    transform:translateY(-5px) scale(1.1);
}

/* ==========================================
   Loading
========================================== */

.modal_loading{
    visibility:hidden;
}

.modal_loading img{
    width:120px;
    height:auto;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width:480px){

    #container{
        width:95%;
        max-width:320px;
    }

    .overlay-content h2{
        font-size:26px;
    }

    .overlay-content i{
        font-size:65px;
    }

    .icon{
        width:80%;
    }

}