@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');

body {
font-family: 'Antonio', sans-serif;
margin: 0;
padding: 0;
background-color: #383838;
background-size: cover;
overflow-y: scroll;
overflow-x: hidden;
::selection {
  background: rgb(65, 65, 65);
}

}

.container {
max-width: 666px;
margin: auto;
text-align: center;
background-color: #333333;
color: #ffffff;
padding-bottom: 5%;
margin-top: 5%;
border-radius: 1%;
margin-bottom: 5%;
filter: drop-shadow(0px 0px 4px #000000);
}

.portrait {
width: 100px;
height: 100px;
border-radius: 60%;
filter: drop-shadow(0px 0px 2px #000);
margin: 5%;
z-index: 1;

  /* nicht highlighable */ 
  
  -webkit-touch-callout: none; 
  -webkit-user-select: none; 
   -khtml-user-select: none; 
     -moz-user-select: none; 
      -ms-user-select: none; 
          user-select: none; 
}

h1 {
font-family: lato;
font-weight: 700;
font-size: 125%;
}

#link-list {
list-style: none;
padding: 0;
}

.link-item {
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;

  /* nicht highlighable */ 
  
  -webkit-touch-callout: none; 
  -webkit-user-select: none; 
   -khtml-user-select: none; 
     -moz-user-select: none; 
      -ms-user-select: none; 
          user-select: none; 
}

.link-item a {
text-decoration: none;
color: #333;
background-color: #fff;
padding: 10px 20px;
border: 1px solid #ccc;
border-radius: 5px;
transition: transform 0.4s;
filter: drop-shadow(0px 0px 0px #000);
  
  -webkit-touch-callout: none; 
  -webkit-user-select: none; 
   -khtml-user-select: none; 
     -moz-user-select: none; 
      -ms-user-select: none; 
          user-select: none; 
}

.link-item img {
    height: 1em;
    margin-right: 10px;
    }

.link-item a:hover {
filter: drop-shadow(0px 0px 6px #fff);
transform: scale(1.1);
text-decoration: underline;
}

.dark-mode {
  background-color: (#000000, 255, 255);
  color: #ffffff;
  filter: drop-shadow(0px 0px 200px #9b2bb1);
}

.dark-mode .container {
  color: #ffffff;
  filter: drop-shadow(0px 0px 6px #000000);
}

.dark-mode .link-item a {
  color: #000000;
}

.dark-mode .link-item a:hover {
  filter: drop-shadow(0px 0px 4px #f000f8);
}

#dark-mode-toggle {
  background: currentColor;
  border-radius: 0.75em;
  cursor: pointer;
  width: 3em;
  height: 1.5em;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  display: none;
}

