* {
    font-family: Roboto Mono;
}


html, body, .site-wrapper {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: fixed;
}

body, .site-wrapper {
    margin: 0rem;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #000;
}

.site-wrapper {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}


#blob {
    background-color: white;
    height: 300px;
    aspect-ratio: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    opacity: 0.2;
}

#blur {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(100px);
}

.content {
    /* overflow-x: hidden;
    overflow-y: auto; */
    height: 80vh;
    width: 50%;
    position: absolute;
    z-index: 3;
    
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 15vh 20% 15vh 20%;

}

.tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
    width: 100%;
}

.tabs a {
    font-family: Roboto Mono;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.6px;
}

h1 {
    font-family: Roboto Mono;
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -2px;

    float: right;
    text-align: right;

    margin: auto;
    flex-grow: 1;
    margin-left: 30px;
}

.title_container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.profile_pic {
    border-radius: 77.5px;
    border: 2px solid #000;
    background: url(assets/profile.jpg), lightgray 50% / cover no-repeat;

    width: 155px;
    height: 155px;
    flex-shrink: 0;
}

.about, .links {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

p {
    text-align: right;
    font-family: Roboto Mono;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.6px; 
    width: 75%;
}

.links {
    margin-top: 10px;
}

.links a {
    margin-left: 20px;
}

svg:hover {
    fill:#4fba52 !important;
}

svg {
    fill: black;
}

/* Theme swtich */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-top: 5px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2c2c2c;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;

  box-shadow: inset 0 0 5px #3131312d;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ddd;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}


/* http://ameyraut.com/display-tooltip-without-javascript-or-jquery-pure-css/ */
#copyTooltip{
    position: relative;
    display: none;
}

#copyTooltip:after{
    content:attr(data-tooltip);
    background:#000;
    padding:5px;
    border-radius:3px; 
    display: inline-block;
    position: absolute;
    transform: translate(-50%,14px); 
    margin:0 auto;
    color:#FFF;
    min-width:100px;
    top:-5px;
    left: 50%;
    text-align:center;
}

#copyTooltip:before {
    /* top:-5px; */
    left: 50%;
    border: solid transparent;
    content: " ";
    /* height: 0;
    width: 0; */
    position: absolute;
    /* border-color: rgba(0, 0, 0, 0); */
    border-top-color: #000;
    border-width: 5px;
    margin-left: -5px;
    transform: rotate(180deg); 
}