body {
    font-family: system-ui;
    background: white;
    text-align: center;
    margin-top: 50px;
    scroll-behavior: smooth;
}

h1 {
    text-align: center;
}

h4 {
    text-align: left;
}

a {
    text-decoration: none;
    color: #0c84fc;
}

.italic {
    font-style: italic;
}

.hide {
    display: none;
}

hr {
    margin: 0;
    border: none;
    border-radius: 2px;
    background: linear-gradient(to right, #50fcc7, #40ccfd);
    height: 3px;
}

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

li {
    padding: 0px;
    margin: 2px;
    margin-bottom: 6px;
    display: inline-block;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .3);
}

#index {
    margin-top: 130px;
    animation: movein 2s ease-out forwards;
}

@keyframes movein {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.image {
    position: relative;
    height: 150px;
    width: auto;
}

.image img {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.button {
    background-color: #f4f4fc;
    border: none;
    border-radius: 12px;
    color: #0c84fc;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    margin: 3px;
    line-height: 1em;
}

.button-v2 {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    color: white;
    margin: 8px 7px 7px 0px;
    transition-duration: 0.3s;
    transition-property: transform;
}

.button-v2:hover {
    transform: scale(1.06);
}

ion-icon {
    padding-right: 4px;
    margin-bottom: -2px;
}

.icons {
    margin: 5px;
    width: 60px;
    height: auto;
    transition-duration: 0.3s;
    transition-property: transform;
}

.icons:hover {
    transform: scale(1.06);
}

.Adam {
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to bottom, #483b28, #F7A235);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Rainbow-Dark {
    font-weight: bold;
    background: linear-gradient(to right, #F75C88, #1D1F5A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Rainbow-Light {
    font-weight: bold;
    background: linear-gradient(to right, #EE7752, #E73C7E 40%, #0094FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Rainbow-Animation {
    font-weight: bold;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* MediaKit Gradient
    background-image: linear-gradient(-130deg, #db55aa, #db55aa, #e76b61, #258ed8, #45af99, #45af99);
    background-size: 600% 600%; */
    background-image: linear-gradient(to right, #EE7752, #E73C7E 40%, #0094FF);
    background-size: 600% 300%;
    transition: all 2s ease-out;
    animation: rainbow-animation 19s ease infinite;
}

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

.center {
    text-align: center !important;
}

p {
    text-align: left;
    font-size: 16px;
}

@media (prefers-color-scheme: dark) {
    body {
        color: #ddd;
        background-color: black;
    }
    .button {
        background-color: #5c5c5c;
        color: dodgerblue;
    }
}

@media screen and (max-width: 1334px) {
    .button {
        margin-bottom: 10px;
    }
    .Line-Break {
        display: block;
    }
    #index {
        margin-top: 100px;
    }
}
