* {
    margin: 0;
    padding: 0;
    --background-color: #131517;
    --color: white;
    --color-hover: rgb(188, 188, 188);
    --color-yellow: yellow;
    --color-yellow-hover: rgb(188, 188, 0);
}

    body{
        margin: 0;
        padding: 0;
        background-color: var(--background-color);
        color: var(--color);
        font-family: 'Source Code Pro', monospace;
        font-weight: 400;
    }

#link-clicks {
    display: flex;
    /* justify-content: center; */
    gap: 5px;
}
#links-short {
    max-width: 140px;
    min-width: 139.99px;
    word-break: break-all;
}
    .material-symbols-outlined {
        color: var(--color) !important;
        cursor: pointer;
    }
    .icon-class {
        user-select: none;
    }
    .icon-class:hover  {
        color: var(--color-hover) !important;
    }
    #link-container-root {
        display: flex;
        flex-flow: row nowrap;
        gap: 15px;
justify-content: space-around;
        align-items: center;
        margin-bottom: 20px;
        padding: 10px;
        /* border: 1px solid; */
    }
    #link-container-root > p {
        font-size: 20px;
        font-weight: 700;
    }
    #link-container {
        display: flex;
        flex-flow: row nowrap;
        gap: 10px;
        justify-content: space-around;
        align-items: center;
        padding: 10px;
        /* border: 1px solid ; */
    }
    #link {
        display: flex;
        flex-flow: column nowrap;
        gap: 10px;
    }
    #root  {
    color: var(--color);
    background-color: #1c1e20;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    font-family: 'Source Code Pro', monospace;
    margin: 10px auto;
    width: 90%;
}
    #icon {
        display: flex;
        flex-flow: row nowrap;
        gap: 10px;
        align-items: center;
    }

img {
	cursor: pointer;
}
#link-container-root > .psuedo {
    color: #1c1e20;   
 } 

 .button{
    color: #979899;
    background-color: #131517;

    padding: 18px;
    max-height: 80px;
    font-size: 18px;
    font-weight: 700;

    border: transparent;

    border-radius: 10px;

    text-align: center;

    width: fit-content;

    -moz-appearance: none;
    -webkit-appearance: none;

    outline: none;
}

.button:hover {
background-color: #1a1d1f;
cursor: pointer;

}
 #clear-cache  {
    color: var(--color);
    background-color: #1c1e20;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    text-align: center;
    font-family: 'Source Code Pro', monospace;
    font-size: 15px;
    margin: 10px auto;
    padding-top: 15px;
    display: flex;
}

#clear-cache:hover {
    background-color: var(--background-color);
    border: 0.5px solid white;
}
@media only screen and (max-width: 600px) {
  #link-container-root {
    display: none;   
 } 
 #root {
    color: var(--color);
    background-color: var(--background-color);
    font-weight: 700;
    font-family: 'Source Code Pro', monospace;
    margin: 10px auto;
    width: 80%;

 }
 #link-container {
    color: var(--color);
    background-color: #1c1e20;
    border: none;
    flex-flow: row nowrap;
    gap: 9px;
    border-radius: 7px;
    justify-content: space-evenly;
    align-items: center;
    padding: 18px;
}
/* 
#link-container > span {
    display:flex;
    flex-flow: column nowrap;
    gap: 5px;
} */


h3 {
    font-size: 20px;
}

.button{
    color: #979899;
    background-color: #131517;

    padding: 12px;
    max-height: 80px;
    font-size: 16px;
    font-weight: 700;

    border: transparent;

    border-radius: 10px;

    text-align: center;

    width: fit-content;

    -moz-appearance: none;
    -webkit-appearance: none;

    outline: none;
}

.button:hover {
    background-color: #1a1d1f;
    cursor: pointer;
    
    }
}

a {
    color: var(--color-yellow);
}

a:hover {
    color: var(--color-yellow-hover);
}


svg {
    cursor: pointer;
}
::-webkit-scrollbar {
    width: 17px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--background-color); 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #323335; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #323335; 
  }
