/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Roboto%20Mono:400,700&display=swap');

:root {
    --font: 'Roboto Mono', sans-serif;
    --color-main: #fff;
    --color-text: #fff;
    --burnt-sienna: #db7f67ff;
    --tan: #dbbea1ff;
    --cinereous: #a37b73ff;
    --van-dyke: #3f292bff;
    --blush: #d34f73ff;
}

body {
    font-family: var(--font);
    background: linear-gradient(30deg, black, #2c2c2c, var(--van-dyke));
    background-size: 450% 450%;
    animation: gradient 5s ease infinite;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: calc(100vh - 8px - 10px);
    margin: 0 !important;
    color: white;
    overflow: hidden;
    position: relative;
}

body:before {
    content: "";
    position: absolute;
    left: -150%;
    top: 0;
    width: 300%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transform: rotate(45deg);
    z-index: -1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .5;
    background-color: unset;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

a {
    position: relative;
    display: inline-block;
}

a[data-title]:hover:before {
    content: attr(data-title);
    position: absolute;

    /* vertically center */
    top: -125%;

    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
    width: max-content;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    z-index: 1;
    opacity: 100% !important;
}

a[data-title]:hover:after {
    content: "";
    position: absolute;

    /* vertically center */
    top: -25%;

    /* the arrow */
    border: 8px solid;
    border-color: black transparent transparent transparent;
    opacity: 100% !important;
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.profile-image {
    position: relative;
    width: min-content;
    margin: 25px auto 25px;
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.profile-image::after {
    content: "";
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: linear-gradient(
            0deg,
            rgb(30 28 27) 0%,
            #cdbcb5 100%,
            rgba(0, 212, 255, 1) 100%
    );
    animation: rotation 2.5s ease infinite;
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -1;
}

.profile-image:hover::after {
    animation: rotation 250ms ease infinite;
}

@keyframes rotation {
    to {
        transform: rotate(360deg);
    }
}

.description {
    color: var(--color-text);
    font-size: 17px;
    font-weight: 400;
    text-align: center;
}

.main-section {
    width: 100%;
    display: block;
    margin: 27px auto;
}

.main-section a:hover, footer a:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.social-media {
    display: flex;
    justify-content: center;
}

.social-media a {
    border: solid var(--color-main) 2px;
    border-radius: 50%;
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    margin: -5px 5px 15px;
    color: var(--color-text);
}

.social-media a.btn-stop {
    cursor: pointer;
    background: #cb3e3e;
    border-color: #cb3e3e;
}

.social-media a.btn-stop:hover {
    color: var(--color-text) !important;
    background: #6c1811;
    border-color: #6c1811;
}

.d-none {
    display: none !important;
}

.main-links {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.main-links a, .tech-stack a {
    display: block;
    background-color: transparent;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 8px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    border: solid var(--color-main) 2px;
    border-radius: 15px;
    cursor: pointer;
}

footer span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

footer .tech-stack {
    width: auto;
    text-align: center;
    margin: 10px auto;
}

footer .tech-stack a {
    display: inline-block !important;
    margin-bottom: 10px !important;
    padding: 12px !important;
    font-size: 12px !important;
}

.ms--images {
    position: relative;
    overflow: hidden;
}

.ms--images.ms-container--horizontal {
    width: 100%;
    height: 400px;
    max-width: 100%;
}

.ms--images.ms-container--horizontal .ms-track {
    left: calc(50% - 350px);
}

.ms--images.ms-container--horizontal .ms-slide {
    display: inline-flex;
}

.ms--images .ms-track {
    display: flex;
    position: absolute;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ms--images .ms-slide {
    align-items: center;
    justify-content: center;
    width: 700px;
    height: 400px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ms--images {
    left: calc(50% - 280px);
}

.ms--images.ms-container--horizontal .ms-track {
    left: -70px;
}

.ms--images .ms-slide__image-container {
    width: 80%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.ms--images .ms-slide__image {
    width: 100%;
    height: 100%;
    background-size: contain;
}

.ms--numbers {
    position: relative;
    overflow: hidden;
}

.ms--numbers.ms-container--horizontal {
    width: 240px;
    height: 240px;
    max-width: 100%;
}

.ms--numbers.ms-container--horizontal .ms-track {
    left: calc(50% - 120px);
}

.ms--numbers.ms-container--horizontal .ms-slide {
    display: inline-flex;
}

.ms--numbers .ms-track {
    display: flex;
    position: absolute;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ms--numbers .ms-slide {
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ms--numbers {
    position: absolute;
    left: calc(50% - 380px);
    top: calc(50% - 300px);
    z-index: -1;
    pointer-events: none;
}

.ms--numbers .ms-slide {
    font-size: 9em;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
}

.ms--titles {
    position: relative;
    overflow: hidden;
}

.ms--titles.ms-container--vertical {
    width: 400px;
    height: 170px;
    max-height: 100%;
}

.ms--titles.ms-container--vertical .ms-track {
    flex-direction: column;
    top: calc(50% - 85px);
}

.ms--titles.ms-container--vertical.ms-container--reverse .ms-track {
    flex-direction: column-reverse;
    top: auto;
    bottom: calc(50% - 85px);
}

.ms--titles.ms-container--vertical .ms-slide {
    display: flex;
}

.ms--titles .ms-track {
    display: flex;
    position: absolute;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ms--titles .ms-slide {
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 170px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ms--titles {
    position: absolute;
    left: calc(50% - 420px);
    top: calc(50% - 85px);
    z-index: 1;
    pointer-events: none;
}

.ms--titles .ms-track {
    white-space: normal;
}

.ms--titles .ms-slide {
    font-size: 3.3em;
    font-weight: 600;
}

.ms--titles .ms-slide h3 {
    margin: 0;
    text-shadow: 1px 1px 2px black;
    font-size: 1em;
}

.ms--links {
    position: relative;
    overflow: hidden;
}

.ms--links.ms-container--vertical {
    width: 120px;
    height: 60px;
    max-height: 100%;
}

.ms--links.ms-container--vertical .ms-track {
    flex-direction: column;
    top: calc(50% - 30px);
}

.ms--links.ms-container--vertical .ms-slide {
    display: flex;
}

.ms--links .ms-track {
    display: flex;
    position: absolute;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ms--links .ms-slide {
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ms--links {
    position: absolute;
    left: calc(50% - 420px);
    top: calc(50% + 105px);
    z-index: 1;
}

.ms--links .ms-track {
    white-space: normal;
}

.ms--links .ms-slide__link {
    font-weight: 600;
    padding: 5px 0 8px;
    border-bottom: 2px solid white;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.pagination {
    display: flex;
    position: absolute;
    left: calc(50% - 420px);
    top: calc(100%);
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 1;
}

.pagination__button {
    display: inline-block;
    position: relative;
    width: 36px;
    height: 20px;
    margin: 0 5px;
    cursor: pointer;
}

.pagination__button:before, .pagination__button:after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    width: 100%;
    box-shadow: 0 1px 0 #0B0D14;
}

.pagination__button:before {
    height: 2px;
    background-color: #6A3836;
}

.pagination__button:after {
    height: 3px;
    background-color: #DC4540;
    opacity: 0;
    transition: 0.5s opacity;
}

.pagination__item--active .pagination__button:after {
    opacity: 1;
}

@media screen and (max-width: 860px) {
    .ms--numbers {
        left: calc(50% - 120px);
    }

    .ms--titles {
        left: calc(50% - 200px);
        top: calc(50% - 135px);
        text-align: center;
    }

    .ms--links {
        left: calc(50% - 60px);
        top: calc(50% + 80px);
    }

    .pagination {
        left: 50%;
        top: calc(100% - 50px);
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 600px) {
    .ms--images {
        overflow: visible;
    }
}

@media screen and (max-width: 400px) {
    .ms--titles .ms-slide {
        transform: scale(0.8);
    }
}

.sliders-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-family: sans-serif;
    line-height: 1.15;
    margin-top: 4em;
    margin-bottom: 2em;
}

