@font-face {
    font-family: Neutra;
    src: url("NeutraText-Bold.otf");
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}

body {
    overflow: hidden;
    background-color: #212121;
    font-family: Neutra;
    color: white;
}

/* Button made by "nikk2007" */
button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

button:hover {
    background-color: #23c483;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-7px);
}

button:active {
    transform: translateY(-1px);
}

/* Social Button by me */
.social:hover>.text {
    height: 0;
    display: none;
}

.social:hover>.links {
    display: block;
}

.social>span {
    color: black;
}

.social>.links {
    display: none;
    color: #111
}

.social>.links>i:hover {
    font-size: 22px;
    transition: all 0.2s ease;
    color: white
}

/* The :has selector is experimental. If you don't see it in the site, there is no real impact on the experience */
.social>.links:has(i:hover)>i:not(:hover) {
    font-size: 12px;
    transition: all 0.2s ease
}

.social>.links>i {
    font-size: 17px;
    transition: all 0.2s ease
}

/* Arrow Button from https://uiverse.io/profile/Nawsome */
.arrow {
    cursor: pointer;
    height: 60px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: transform 0.1s;
    width: 50px;
}

.arrow-top,
.arrow-bottom {
    background-color: #666;
    height: 4px;
    left: -5px;
    position: absolute;
    top: 50%;
    width: 100%;
}

.arrow-top:after,
.arrow-bottom:after {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.15s;
}

.arrow-top {
    transform: rotate(45deg);
    transform-origin: bottom right;
}

.arrow-top:after {
    left: 100%;
    right: 0;
    transition-delay: 0s;
}

.arrow-bottom {
    transform: rotate(-45deg);
    transform-origin: top right;
}

.arrow-bottom:after {
    left: 0;
    right: 100%;
    transition-delay: 0.15s;
}

.arrow:hover .arrow-top:after {
    left: 0;
    transition-delay: 0.15s;
}

.arrow:hover .arrow-bottom:after {
    right: 0;
    transition-delay: 0s;
}

.arrow:active {
    transform: translateX(-50%) translateY(-50%) scale(0.9);
}