@font-face {
    font-family: 'Roboto';
    src: url('/assests/Roboto-VariableFont_wdth,wght.ttf');
}
*{
    padding: 0;
    margin:0;
}
body{
    background: radial-gradient(circle, rgb(8, 0, 82), rgb(0, 2, 31));
    font-family: 'Roboto';
    color: #fff;
}
div.container{
    max-width: 800px;
    margin: 30px auto 0 auto;
}

a.clickable:link{
    text-decoration: none;
    color: #00a2ff;
}

nav.nav-mobile{
    display: none;
}
nav.nav-desktop{
    display: block;
}
div.logo{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap:10px
}
div.logo img{
    width: 90px;
}
div.logo span{

    font-size: 20px;
    letter-spacing: 3px;
}

div.top-row{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
div.link-list ul{
    display: inline-flex;
    gap: 20px;
    list-style: none;
    text-decoration: none;
    
}
div.link-list ul li a{
    text-decoration: none;
    color: #ffffff88;
}

.active{
    font-weight: bolder!important;
    color: #fff!important;
}
div.banner-container{
    height: 500px;
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
}
.effect-3d{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.shadow{
    height: 20px;
    background-color: #000;
    border-radius: 100%;
    width: 70%;
    filter: blur(10px);
    z-index: -1;
}
.text{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text span{
    font-size: 30px;
    color: #fff;
    margin: 5px;
    
}
.text span.second{
    font-size: 20px;
    color: #fff;
    margin: 5px;
    
}
span.sm{
    font-size: 15px;
}

div.bio-container{
    width: 100%;
    
}
div.contact-container{
    width: 100%;
   
}

.article{
    margin: 20px 0;
    text-align: center;
}
.button-container{
    width: 100%;
    display: flex;
    justify-content: center;
}
.button{
    padding: 8px 10px;
    border-radius: 10px;

}
.outline{
    outline: solid 1px #fff;
}
.article-container{
    text-align: left;
    margin: 50px 0;
    gap: 30px;
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
}
.content-box{
    width: 200px;
    border-radius: 10px;
    padding: 50px;
}
li{
    margin: 15px 0;
    
}
.footer{
    display: flex;
    justify-content: space-between;
}
.left-footer{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.find-me{
    font-weight: bold;
}
svg.icon{
    width: 28px;
    fill: #fff;
}
a.social-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}
.bio-container .text-container{
    margin-top: 20px;
}
.bio-container .text-container p{
    text-align: justify;
    margin-bottom: 30px;
}
.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
  }
  .pulse {
    animation: pulse-animation 2s infinite;
  }
  .blinker {
    animation: blinker 2.5s linear infinite;
    font-size: 12px;
    padding-top: 5px;
    padding:none;
  }
  .my-photo-container{
    border: 10px solid #00eeff;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    overflow: hidden;
    margin: 20px auto 0px auto;
  }
  .my-photo-container img{
    width: 100%;
  }
  .table, tr{
    border-style: solid;
    border-width: 2px;
    border-color: #00eeff;
  }
  td{
    padding: 10px;
  }
  .table{
    box-sizing: border-box;
    border-radius: 10px;
    margin: 20px auto 30px auto;
    max-width: 500px;
    min-width: 200px;
    border-collapse: collapse;
  }
  .image-container{
    width: 100%;
    box-sizing: border-box;
    display: flexbox;
    padding: 10px;
    columns: 2;
    gap: 10px;
  }
          .article-container {
            max-width: 700px;
            margin: 40px auto;
            font-family: Arial, sans-serif;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .article-image img {
            width: 100%;
            height: auto;
            border-radius: 6px;
            margin-bottom: 24px;
        }
        .article-header {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        .article-subheader {
            font-size: 1.3em;
            color: #555;
            margin-bottom: 24px;
        }
        .article-body {
            font-size: 1.1em;
            line-height: 1.7;
            color: #222;
        }

@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
  }

  @keyframes blinker {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    80% {
      opacity: 1;
    }
  }
/*Mobile Design*/
@media only screen and (max-width:800px) {

    body{
        margin: 0;
    }
    nav.nav-desktop{
        display: none;
    }
    nav.nav-mobile{
        display: flex;
        flex-direction: column;
        position:fixed;
        bottom: calc(100vh - 150px);
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: #000549de;
        align-items: center;
        justify-content: space-between;
        backdrop-filter: blur(10px);
        box-shadow: 0px 5px 10px #000000c2;
        transition: all 1s;
        overflow: hidden;
    }
    .in-front{
        bottom: 0!important;;
    }
    .mobile-logo{
        margin-bottom: 20px;
    }
    .mobile-logo-container img{
        width: 100px;
    }
    .mobile-logo-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    nav.nav-mobile 
    div.top-row-mobile{
        margin: 20% 0;
        display: flex;
       flex-direction: column;
       gap: 30px;
       align-items: center;
        
    }
    div.top-row-mobile a {
        text-decoration: none;
        font-size: 20px;
        color: #ffffff88;
    }
    div.container{
        width: 100%;
        margin: 0 auto 0 auto;
        position: relative;
        
    }
    div.container-inside{
        margin-top: 200px;
    }
    div.banner-container{
        height: auto;
        width: 100%;
        display: inline-flex;
        flex-direction: column; 
    }
    div.effect-3d{
        padding:2.5%;
        width: 95%;
        height: 70vh;
    }
    div.text{
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 10%;
        width: 80%;
    }
    .footer{
        margin: 10px 20px;
        flex-direction: column;
    }
    .left-footer{
        margin: 0px 50px;
    }
    .right-footer{
        margin: 50px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .bio-container .text-container{
        margin-top: 20px;
        padding: 0 30px;
    }
    .my-photo-container{
        margin: 150px auto 0px auto;
      }
      .table{
        margin-top: 150px;
      }
        .image-container{
        columns: 1;
        }
}