/* Webdev is not my strong suit...  */

body {
    background: linear-gradient(to bottom, #121827, #000000);
    background-color: #121827;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px 10px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    margin: auto;
    width: 96%;
    max-width: 1200px;
    padding-top: 10px;
    min-height: 100vh;
}

@media only screen and (max-width: 768px) {
    body {
        width: 92%;
        padding-top: 5px;
    }
}

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

li {
    line-height: 1.6;
}

a {
    color: #FFF;
}
a:hover {
    color: #0EA5E9;
}

.header {
    display: flex;
    align-items: center;
    margin-top: 5px;
    color: #FFF;
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
    transition: transform 1s ease-in-out;
}

.icon-spin {
    transform: rotate(360deg);
}

.text {
    color: #D1D5DB;
}

.gradient-text {
    font-size: 1.5em;
    text-align: center;
    background: linear-gradient(270deg, #28334E5E, #37466B, #28334E5E);
    background-size: 200% 100%;
    background-clip: text;
    color: transparent;
    animation: gradient 10s ease infinite;
}

.centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
}
