@media screen and (max-width: 650px) {
    body {
     background-color: #0A0806;
    font-family: 'Crimson Text', serif;
    margin: 0;
}
    #computer{
      display: none;
    }
    .slide-in {
    opacity: 0;
    position: relative;
    z-index: 1000;
    transform: translateX(-50px); 
    transition: all 0.25s ease-out;
}

.slide-in.active {
    opacity: 1;
    transform: translateX(0);
}
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    i{
        color:white;
        font-size: 30px;
    }
    #icons{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 50px 0 50px 0;
        position: relative;
        z-index: 1000;

    }
    .blink{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    animation: colorChange 1s infinite;
}
@keyframes colorChange {
    0% {
      background-color: lime;
    }
    50% {
      background-color: #1F1F23;
    }
    100% {
      background-color: lime;
    }
  }

    @keyframes floatAnimation {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
      100% {
        transform: translateY(0);
      }
    }
    header{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        animation: fadeIn 1.7s ease-in-out;
        border-style: solid;
        margin: 0;
        border-width: 0 0 0.5px 0;
        border-color: gray;
        padding-bottom: 7px;

    }
    h1{
      
        font-size: 25px;
        font-family: 'Rubik Burned', system-ui;
        animation: fadeIn 1.25s ease-in-out;        

    }
    a{
      position: relative;
      z-index: 1000;
    }
  
      #butwrap{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px;
        margin-top: 45px;
      }

    #btn1, #btn2, #btn3{
        height: 50px;
        width: 100px;
        font-size: 15px;
        border:none;
        border-radius: 5px;
        padding: 5px;
        overflow-wrap: break-word;
    }
    #btn1{
        background-color:#484e48;
        color: white;
        z-index: 1000;
    }
    #btn2{
        background-color:#484e48;
        color: white;
        z-index: 1000;
    }
  
  .mines{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 25px;
    margin:25px 0 25px 0;
  }
    #btn3{
        background-color:#484e48;
        color: white;
        z-index: 1000;
    }
    #btn3:active{
        background-color: gray;
    }
    #btn2:active{
        background-color: gray;
    }
    #btn1:active{
        background-color: gray;
    }
    #background{
        height: 208px;
        width: 95%;
        margin-top: 0;
        border-radius: 5%;
        box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.7);
           
    }
    .fir{
      margin: -15px 0 -10px 2px;
    }
    #backwrap{
        display: flex;
        justify-content:center;
        align-items: center;
        position: relative;
        z-index: 1000;
        margin: 25px 0 40px 0;

    }
   
    .steeze{
      font-size: 16px;
      font-weight: 600;
  
    }
    p{
        color: white;
        font-weight: 400;
        margin-bottom: 10px;
        font-size: 16px;
        padding: 15px;
        line-height: 1.3;
        position: relative;
        z-index: 1000;

    }
    .myp{
      font-size: 0.7rem;
    }



    #menuwrap {
      display: none;
      flex-direction: column;
      background-color: gray;
   
      overflow: hidden;
      max-height: 0;
      margin-bottom: 10px;
    }

    .clicked {
      display: flex;
      max-height: 510px;
      animation: slideDown 1.5s ease-in-out forwards;
    }
    .notClicked {

      max-height: 0;
      animation: slideup 1.5s ease-in-out forwards;
      display: none;
    }
    @keyframes slideup {
      from {
        max-height: 920px;
      }
      to {
        max-height: 0;
      }
    }
    @keyframes slideDown {
      from {
        max-height: 0;
      }
      to {
        max-height: 920px;
      }
    }
    #menuwrap p{
    
      margin-left: 13px;
    }
    #divhead{
        background-color: #36454F;

        padding: 5px;

    }
    #headwrap{
     margin-top: 0;
   }
    #divhead p{
        color: white;
      
        text-align: center;
    }

    #menu:active{
      color: rgb(190, 145, 183);
        
    }
    a{
        text-decoration: none;
        color: white;
    }
    label{
        color: white;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    #formDiv{
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 75px;
        border: 2px solid gray;
        padding: 30px;
        border-radius: 15px;
        width: 270px;
    }
    input{
        height: 35px;
        width: 75%;
        margin: 15px 0 15px 0;
        font-size: 15px;
        padding: 7px;
        border: none;
        z-index: 1000;
        position: relative;
        border-radius: 10px;

    }
    textarea{
        font-size: 15px;
        border: none;
        padding: 7px;
        margin: 15px 0 15px 0;
        height: 220px;
        width: 95%;
        position: relative;
        z-index: 1000;
        border-radius: 5px;
    }
    
    i{
      z-index: 1000;
    }
    button{
     z-index: 1000;
    }
    #send{       
        float: right;
        height: 35px;
        width: 90px;
        font-size: 17px;
        font-weight: bold;
        border:none;
        border-radius: 5px;
        padding: 3px;
        color: white;
        position: relative;
        background-color: green;
        z-index: 1000;

    }
    #send:active{
        background-color: gray;
    }
    .proimage{
        height: 115px;
        width: 215px;
        border: 1px solid gray;
        margin: 15px 0 15px 15px;
    }
    .around{
        border: 1px solid white;
        padding: 15px;
        width: 300px;
        background: #000000;
        border-radius: 15px;
        margin-top: 65px;
        margin-bottom: 15px;
        overflow-wrap: break-word;
        box-shadow: 0 0 5px white, 0 0 5px white, 0 0 10px rgba(255, 247, 64, 0.5);
    }

    .around p{
      font-size: 1.2rem;
      margin-top: 7px;
    }
    #projects{
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer{
        background-color: #36454F;
        height: 50px;
        text-align: center;
        margin: 50px -10px -15px -10px;
        position: relative;
        z-index: 1000;
        padding: 0 0 10px 0;
    }   
    footer p{
        font-size: 0.7px;
        font-family: monospace;
        color: white;
    }
    #fb{
        margin-right: 30px;
        cursor: pointer;
    }
    #git{
        margin-right: 30px;
        cursor: pointer;
    }
    .water {
      border-radius: 50%;
      position: fixed;
      top: 50%;
      height: 200px;
      width: 200px;
      left: 50%;
      opacity: 0.1;
      z-index: 1;
      transform: translate(-50%, -50%);
      
    }
    #learns{
      position: relative;
      z-index: 1000;
    }
    .bd{
      display: none;
    }
    #tweet{
      color: #FFFFFF;
      background: white;
    }
    .one, .two{
      padding: 5px 7px 5px 7px;
      margin-left: 7px;
      margin-top: 5px;
    }
    .two{
     margin-bottom: 30px;
    }
    

}





/*#ffa63c*/










/*❌❌❌❌❌❌❌ system responsiveness below*/







@media screen and (min-width: 650px) {
    body {
        background-color: #0A0806;
        font-family: 'Crimson Text', serif;
        overflow-wrap: break-word;
        overflow-x: hidden !important;
        overflow-y: scroll;
        margin: 0;
    }
    .one, .two{
      padding: 5px 60px 5px 15px;
    }
     #tweet{
      color: #FFFFFF;
      background: white;
    }
   
    .slide-in {
    opacity: 0;
    position: relative;
    z-index: 1000;
    transform: translateX(-50px); 
    transition: all 0.25s ease-out;
}

.slide-in.active {
    opacity: 1;
    transform: translateX(0);
}
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    
    i{
        color:white;
        font-size: 30px;
         z-index: 1000;
    }
    #icons{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 50px 0 50px 0;
        position: relative;

    }
    #phone{display: none;}
    .water {
      border-radius: 50%;
      position: fixed;
      top: 50%;
      left: 50%;
      height: 300px;
      width: 300px;
      opacity: 0.1;
      z-index: 1;
      transform: translate(-50%, -50%);
     
    }


    @keyframes floatAnimation {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
      100% {
        transform: translateY(0);
      }
    }
    header{
        display: flex;
        flex-direction: row;
        margin: 0;
        justify-content: space-around;
        align-items: center;
        animation: fadeIn 1.7s ease-in-out;
        border-style: solid;
        border-width: 0 0 0.5px 0;
        border-color: gray;
        padding-bottom: 7px;

    }
    h1{
      
        font-size: 27px;
        font-family: 'Rubik Burned', system-ui;
        animation: fadeIn 1.25s ease-in-out;        

    }
    #butwrap{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 800px;
        margin-top: 35px;
    }
     #learns{
      position: relative;
      z-index: 1000;
    }

    #btn1, #btn2, #btn3{
        height: 45px;
        width: 155px;
        font-size: 15px;
     
        border:none;
        border-radius: 5px;
        padding: 5px;
        overflow-wrap: break-word;
        position: relative;
        z-index: 1000;
    }
    #btn1{
        background-color:#484e48;
        color: white;
      
    }
    .blink{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    animation: colorChange 1s infinite;
}
@keyframes colorChange {
    0% {
      background-color: lime;
    }
    50% {
      background-color: #1F1F23;
    }
    100% {
      background-color: lime;
    }
  }
    #btn2{
        background-color:#484e48;
        color: white;
        
        
    }
    #btn3{
        background-color:#484e48;
        color: white;
      
    }
    #btn3:active{
        background-color: gray;
    }
    #btn2:active{
        background-color: gray;
    }
    #btn1:active{
        background-color: gray;
    }


    #btn3:hover {
        background-color: gold;
        color: black;
    }
    #btn2:hover{
        background-color: gold;
        color: black;
    }
    #btn1:hover{
        background-color: gold;
        color: black;
    }

    #background{
        height: 310px;
        aspect-ratio: 16/9;
        border-radius: 15px;
        margin-right: 40px;
        position: relative;
        z-index: 1000;
        box-shadow: 25px 25px 35px rgba(0, 0, 0, 0.7);
        margin-left: 65px;
        /*animation: fadeIn 3s ease-in-out;  */      
    }
    #backwrap{
        display: flex;
        justify-content:center;
        align-items: center;
        margin: 25px 0 45px 0;

    }

    p{
        color: white;
        font-weight: 450;
        margin-bottom: 15px;
        font-size: 19px;
        padding: 10px;

        z-index: 1000;
    }



    #menuwrap {
      display: none;
      flex-direction: column;
      background-color: gray;
      
      overflow: hidden;
      max-height: 0;
      
      position: relative;
      z-index: 1000;
    }

    .clicked {
      display: flex;
      max-height: 510px;
      animation: slideDown 1.5s ease-in-out forwards;
    }
    .steeze{
      font-size: 17px;
      font-weight: 450;
     
    }
    .fir{
      margin-left: 8px;
    }
    .notClicked {

      max-height: 0;
      animation: slideup 1.5s ease-in-out forwards;
      display: none;
    }
    @keyframes slideup {
      from {
        max-height: 400px;
      }
      to {
        max-height: 0;
      }
    }
    @keyframes slideDown {
      from {
        max-height: 0;
      }
      to {
        max-height: 400px;
      }
    }
    #menuwrap p{
      
      margin-left: 13px;
    }
    #divhead{
        background-color: #36454F;

        padding: 5px;

    }
    #divhead p{
        color: white;
    
        text-align: center;
    }
    .myp{
      font-size: 0.9rem;
    }

    #menu:active{
      color: rgb(190, 145, 183);

    }
    #menu:hover{
        color: rgb(190, 145, 183);
    }
    a{
        text-decoration: none;
        color: white;
    }
    .mines{
      
      
      border-radius: 10px;
      padding: 10px;
      margin: 20px;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      width: 1000px;
    }
    label{
        color: white;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .dis{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(4, 1fr);
    }
    #formDiv{
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 45px;
        border: 2px solid gray;
        padding: 15px;
        border-radius: 15px;
        margin-left: 120px;
        width: 40%;


    }
    input{
        height: 35px;
        width: 75%;
        margin: 15px 0 15px 0;
        font-size: 15px;
        padding: 7px;
        border: none;
        border-radius: 10px;
        position: relative;
        z-index: 1000;

    }
    textarea{
        font-size: 15px;
        border: none;
        z-index: 1000;
        padding: 7px;
        margin: 15px 0 15px 0;
        height: 200px;
        width: 75%;
        position: relative;
        z-index: 1000;
        border-radius: 5px;
    }
    #send{       
        float: right;
        height: 35px;
        width: 90px;
        font-size: 17px;
        font-weight: bold;
        border:none;
        border-radius: 5px;
        padding: 3px;
        position: relative;
        z-index: 1000;
        color: white;
        background-color: green;

    }
    .proimage{
        height: 115px;
        width: 215px;
        border: 1px solid gray;
        margin: 15px 0 15px 10px;
    }
    .around{
        border: 1px solid white;
        padding: 15px;
        width: 33.33%;
        border-radius: 15px;
        margin: 85px 50px 0 10px;
        background: black;
        overflow-wrap: break-word;
        box-shadow: 0 0 5px white, 0 0 5px white, 0 0 10px rgba(255, 247, 64, 0.5);
   
    }
    .around:hover{
        width: 38%;

    }
    #projects{
        display: none;
        flex-wrap: wrap;
        margin-left: 115px;
    }
    #headwrap{
        display: flex;

        justify-content: space-between;
    }
    #newWrap{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

  
    a:hover{
        color: goldenrod;
    }
    footer{
        background-color: #36454F;
        height: 50px;
        text-align: center;
    
        position: relative;
        z-index: 1000;
        padding: 8px;
    }   
    footer p{
        font-size: 15px;
        font-family: monospace;
        color: white;
    }

    #fb{
        margin-right: 130px;
        cursor: pointer;
    }
    #git{
        margin-right: 130px;
        cursor: pointer;
    }    
    #send:active{
        background-color: gray;
    }
   
}
