html, body, main, div, h1, h2, h3, h4, h5, h6, p, a, ul, li, img, form, input, button {
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    height: 100%;
}

a {
    color: #4156ca;
    font-weight: 800;
    position: relative;
    text-decoration: none;
}

a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 0;
    background-color: #111e67;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
    pointer-events: none;
}

a:hover {
    color: #111e67;
}

a:hover::after {
    transform: scaleX(1);
}

div {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #252525;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
}

div#title-wrapper {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

h1#title {
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    text-align: center;
}

h2#subtitle {
    font-size: 1.6rem;
    text-align: center;
}

div.info-card-slot {
    display: flex;
    flex-direction: column;
    font-size: 3.6rem;
    width: auto;
    position: relative;
    padding: 0 4rem;
}

div.showcase-title {
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #252525;
    padding: 0 2rem;
    align-self: center;
}

div.showcase-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    width: 2rem;
    height: 2px;
    background-color: #252525;
}

div.showcase-title::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    width: 2rem;
    height: 2px;
    background-color: #252525;
}

div.showcase-title::before {
    background: linear-gradient(to right, transparent 0%, transparent 20%, #252525 20%, #252525 80%, transparent 80%, transparent 100%);
}

div.showcase-title::after {
    background: linear-gradient(to right, transparent 0%, transparent 20%, #252525 20%, #252525 80%, transparent 80%, transparent 100%);
}

div.showcases {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

ul#info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin-right: 4px;
}

li {
    left: 0;
    text-decoration: none;
    list-style-type: none;
    font-size: 1.6rem;
}

ul#info-cards > li{
    margin-left: 16px;
    text-decoration: none;
}

li > a {
    margin: 0;
    padding: 0;
    height: 100%;
    text-decoration: none;
    color: #252525;
}

a.info-card-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

li {
    line-height: 2.0rem;
    /* text-align: center; */
    /* vertical-align: middle; */
}

li.info-card-text > a {
    font-size: 1.8rem;
    font-weight: 600;
}

ul#list-works {
    font-size: 1.6rem;
}

ul#list-works > li {
    margin-top: 8px;
}

ul#list-works > li > a {
    font-weight: 600;
}

div.bth-wrapper {
    position: absolute;
    bottom: 5rem;
    background-color: #4a4c4d;
    padding-right: 1rem;
    /* right: 1rems; */
    right: 0;
    display: flex;
    justify-content: center;
}

div.bth-wrapper > a {
    color: #f8f9fa;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 6px 10px;
    text-decoration: none;
}

div.info-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

div.info-card-description {
    font-size: 1.65rem;
    font-weight: 400;
}

span.code-func {
    color: #efefef;
}

span.code-bracket {
    color: #efefef;
}

span.code-text {
    color:#91a3ff;
}

footer {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4a4c4d;
    color: #f8f9fa;
    font-size: 1.6rem;
    height: 4rem;
    width: 100%;
}

@keyframes gradientMove-left {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes gradientMove-right {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

div#showcase-card-slot::before,
div#showcase-card-slot::after {
    content: '';
    position: absolute;
    top: 0.8rem;
    bottom: -1.5rem;
    width: 2px;
    background-color: #252525;
}

div#showcase-card-slot::before {
    left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

div#showcase-card-slot::after {
    right: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

@media (max-width: 768px) {
    div#showcase-card-slot::before,
    div#showcase-card-slot::after {
        display: none;
    }
}

div.bth-wrapper > a::after,
footer a::after {
    display: none;
}