* {
    margin: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
    user-select: none;
}
[hidden] {
  display: none !important;
}

body {
    font-family: "Quicksand", sans-serif;
    background: #222;
    color: white;
    height: 100%;
    width: 100%;
}

main,
header {
    vertical-align: middle;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 20em;
    padding-top: 5%;
}

main {
    zoom: 0.85;
}

a.redirectLink {
    color: white;
    text-decoration: none;
}

a.redirectLink:hover {
    text-decoration: underline wavy white 2px;
}

a#swipe:hover div,
div#report:hover {
    animation: headShake;
    animation-duration: 1s;
}


a#swipe:nth-child(1) div {
    animation-delay: 0ms;
}

a#swipe:nth-child(2) div.animate__fadeInLeft {
    animation-delay: 100ms;
}

a#swipe:nth-child(3) div.animate__fadeInLeft {
    animation-delay: 200ms;
}

a#swipe:nth-child(4) div.animate__fadeInLeft {
    animation-delay: 300ms;
}

a#swipe:nth-child(5) div.animate__fadeInLeft {
    animation-delay: 400ms;
}

a#swipe:nth-child(6) div.animate__fadeInLeft {
    animation-delay: 500ms;
}

a#swipe:nth-child(7) div.animate__fadeInLeft {
    animation-delay: 600ms;
}

div#report.animate__fadeInRight {
    animation-delay: 600ms;
}

a.poweredLink {
    color: white;
    text-decoration: none;
    transition: 0.25s;
}

a.poweredLink:hover {
    text-decoration: underline wavy white 2px;
}

.outside {
      position: absolute;
  left: 32.5%;
  position: relative;
	width: 118px;
	height: 118px;
	background: #666;
	-webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}

.inside {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #666;
  -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  
}

img.profilePic {
    border-radius: 35%;
    clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
    width: 100px;
    height: 100px;

}


div.redirectLink {
    margin: 10px 0;
    border-radius: 25px;
    border: 2.5px solid #666;
    background: #333;
    padding: 15px 0;
    width: 100%;
    transition: 0.25s;
}

div.redirectLink:hover {
    background: #252525;
}

div#backgroundImage {
    margin: 0;
    box-shadow: 0 0 20vmin rgba(0, 0, 0, 1) inset, 0 0 10vmin rgba(0, 0, 0, 1) inset, 0 0 5vmin rgba(0, 0, 0, 1) inset;
    background-image: url(https://hbidamianblog.1mb.site/SCDLC5470.png);
    background-repeat: repeat;
    background-position: center;
    background-size: 50px;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1000;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-corner {
    background: var(--secondary-color);
    height: unset;
    width: unset;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--third-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
}

