@font-face {
    font-family: 'Roboto Condensed';
    src: url(../fonts/RobotoCondensed-Regular.ttf);
}

*{
    box-sizing: border-box;
}

body{
    font-family:'Roboto Condensed', sans-serif;
    letter-spacing: 1px;
    margin:0;
    padding:0;
}

.main{
    position: relative;
    height: 100vh;
    width:100%;
}

#background-video{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    z-index: -1;
}

.card{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    width:320px;
    height:500px;
    margin:auto;
    background-color: rgb(52, 48, 48);
    border-radius: 30px;
}

#modeBtn{
    width:40px;
    display: block;
    margin:20px auto;
    cursor: pointer;
}

.myIMG{
    width:150px;
    height:150px;
    margin:15px auto;
    border-radius:50%;
    overflow: hidden;
}

#myIMG{
    width:100%;
    height:100%;
    object-fit: cover;
}

.user-info{
    text-align: center;
    color:white;
}

.user-info p{
    margin:5px auto;
}

.logo{
    text-align: center;
    border-top:2px solid white;
    margin:23px auto;
    padding-top:2px;
}

.logo-icon{
    display: inline-block;
    margin-top:20px;
    padding:3px;
}

.logo-icon:first-child{
    padding-left: 0;
}

.logo-icon img{
    width:45px;
}

.portfolio-btn{
    text-align: center;
    margin-top: 30px;
}

.btn-link{
    color:#0292df;
    font-size:18px;
    font-weight:bold;
    text-decoration: none;
    background-color: white;
    padding:12px 64px;
    border-radius: 15px;
    border:2px solid;
    animation: borderChangeColor 3s linear infinite;
}


@keyframes borderChangeColor {
    25%{
        border-top:2px solid darkcyan;
        border-right:2px solid rgb(2, 161, 2);
        border-bottom:2px solid lightseagreen;;
        border-left:2px solid #0292df;
        color:white;
    }
    50%{
        border-top:2px solid lightseagreen;;
        border-right:2px solid darkcyan;
        border-bottom:2px solid #0292df;
        border-left:2px solid rgb(2, 161, 2);
        color:#0292df;
    }
    75%{
        border-top:2px solid rgb(2, 161, 2);
        border-right:2px solid lightseagreen;
        border-bottom:2px solid darkcyan;
        border-left:2px solid #0292df;
        color:white;
    }
    100%{
        border-top:2px solid #0292df;
        border-right:2px solid rgb(2, 161, 2);
        border-bottom:2px solid lightseagreen;;
        border-left:2px solid darkcyan;
        color:#0292df;
    }
}

#lnkdIN{
    background-color: #0292df; 
    color:white; 
    padding:3px; 
    border-top-right-radius: 7px; 
    border-bottom-right-radius: 7px;
    animation: lnkdIN_change_color 3s linear infinite;
}

@keyframes lnkdIN_change_color {
    25%{
        background-color: white; 
        color:white; 
    }
    50%{
        background-color: #0292df; 
        color:white; 
    }
    75%{
        background-color: white; 
        color:white; 
    }
    100%{
        background-color: #0292df; 
        color:white; 
    }
}

.qr-container{
    position: relative;
    height:100vh;
}

.qr{
    position: absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    width:250px;
    height:250px;
    margin:auto;
}

.qr img{
    width:100%;
    height:100%;
}