@font-face {
 font-family: 'Rubik';
 src: url(Rubik-VariableFont_wght.ttf) format('truetype');
 font-weight: 100 900;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

.socials {
  border: none;
  width: 60px;
  height: 60px;
  transition: transform .1s ease-in-out;
  transform-origin: center;
}

.socials:hover {
  filter: blur(1px) grayscale(50%);
  transform: scale(1.25);
}

p {
    font-weight: 500;
    color: #666666;
}

li {
    display: inline;
    padding: 10px;
}

.active {
    color: #888888;
    text-decoration: underline;
    text-decoration-color: #888888;
}

a {
    color: #666666;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: #222222;
}

a:hover{
    color: #888888;
    text-decoration-color: #888888;
}

html, body{
    color: #666666;
    font-family: Rubik, Verdana, Geneva, Tahoma, sans-serif;
    background: #111111;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

::-moz-selection {
  color: #888888;
  background: transparent;
}

::selection {
  color: #888888;
  background: transparent;
}

.title{
    font-size: 100px;
}

.menubar a {
    font-size: 20px;
} 

.name {
    text-align: center;
}

#overlayImg {
    cursor: zoom-out;
}

ul{
    padding-inline-start: 0;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);

  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media (max-width: 720px) {
    .title{
    font-size: 50px;
    }
    p {
    font-size: 20px;
    }
    .menubar a {
        font-size: 10px;
    } 
}
@media (min-width: 721px) {
    .name {
        padding-top: 25vh;
        margin-bottom: 40px; 
    }
}