/* Whole */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: rgb(); */
    /* transition: background-color 1s, color 1s; */}
body{
    font-family:'Inter', sans-serif;
    overflow: hidden;
    background-image: url();
    background-size: cover;
    background-repeat: no-repeat;}
#infocontainer{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        height: 100vh;
        z-index: 999;}
/* Background Pattern */
.dot{
    background: radial-gradient(rgb(227, 183, 52) 80%, rgb(0, 0, 0));
    background-size: 10px 10px;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;}
/*copy*/
.copy{
    color: rgba(14, 14, 14, 0.269);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    background-color: #f8d443;
    padding: 5px 0px 0px 47px;
    height: 35px;
    width: 250px;
    position: absolute;
    display: flex;
    top: 77%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: -1;}
.rectangle{
    height: 470px;
    width: 450px;
    background-color: rgb(248, 212, 67);
    position: absolute;
    display: flex;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 35px;
    z-index: -1;
    border: 1;
    border-width: 3.5px;
    border-color: black;
    border-style: dashed; }
/* Inner Dots */
.dumpp{
    background: radial-gradient(rgba(25, 0, 255,0) 90%, rgba(14, 14, 14, 0.269));
    background-size: 35px 35px;
    height: 470px;
    width: 450px;
    position: absolute;
    display: flex;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 35px;
    z-index: -1;}
/* Profile Image Container */
.infocontainer .profileimage{
    border-radius: 100%;
    height: 120px;
    box-shadow: 5px 5px 10px rgba(196, 168, 53,0.2);
    z-index: 999;  
}
/* 
.prof{
    border-radius: 100%;
    height: 120px;
    width: 120px;
    
    border-style: dashed;
    z-index: -1;
} */
/*H1*/
.infocontainer .username{
    color: #5e17eb;
    margin-top: 25px;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    background-color: rgb(248, 212, 67);
    border-radius: 10px;
    padding: 0px 10px 0px 10px;}
/* btn */
.infocontainer ul{
    overflow: hidden;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}
/* buttons */
.infocontainer ul li a{
    background-color: #5e17eb;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    text-align: center;
    height: 5vh;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    color:white;
    margin-top: 20px;
    text-decoration: none;
    transition: 0.5s;
}
/* transition */
.infocontainer ul li a:hover{
    color: black;
    background-color: white;
    transition: width 0.8s, color 0.5s;
    width: 250px;
    }
    /* status */
.status {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    height: 45px;
    padding-top: 3px;
    width: 100%;
    text-align: center;
    z-index: -1;
    color: black;
    background-color: rgb(248, 212, 67);
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);}


/* Mobile view */
@media only screen and (max-width: 768px) {
    body {
      background-size: contain;
    }
  
    .rectangle,
    .dumpp {
      width: 90%;
      height: 300px;
    }
  
    .infocontainer .profileimage {
      height: 80px;
    }
  
    .infocontainer .username {
      font-size: 16px;
    }
  
    .infocontainer ul {
      width: 50%;
    }
  
    .infocontainer ul li a {
      width: 80%;
      padding: 10px 20px;
      font-size: 14px;
    }
  }
  