* {
  margin: 0;
  padding: 0;
  color: black;
  user-select: none; 
  -webkit-user-drag: none;
}
:root {
  --widget-color: #d6d6d6;
  --widget-color-dark: #bebebe;
}
div{
  overflow: hidden;
}
html{
  height: 100vh;
}
body{
  height: 100vh;
  margin:0;
  overflow: hidden;
  font-family: 'Be Vietnam Pro', sans-serif;
}
#links a{
    display: inline-flex;
    text-decoration: none;
    background-color: var(--widget-color);
    border-radius: 15px;
    font-size: large;
    height:100%;
    align-items: center;
    padding: 14px 20px;
    margin: 0 8px;
}
#links a:hover{
    background-color: var(--widget-color-dark);
}
#links{
    left: 50%;
    top: 10px;
    transform: translate(-50%,0);
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 1;
}
#favico{
    aspect-ratio: 1 / 1;
    background-color: var(--widget-color);
    border-radius: 15px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}
#favico img{
    height: 60%;
    display: inline;
    object-fit: contain;
    cursor: pointer;
    margin: 20%;
    aspect-ratio: 1 / 1;
    filter: invert();
}