.main {
    font-family: "Noto Color Emoji", "Josefin Sans";
    background-color: #181a1b;
    color: #fff;
    margin: 0px;
}

.search-bar {
    position: sticky;
    top: 0;
    margin: 0px;
    margin-bottom: 5dvh;
    background-color: #000000;
    overflow: visible;
    padding: 2dvh;
}

.search-bar input {
    color: #fff;
    background-color: #000000;
    border: none;
    border-color: transparent;
    width: 99%;
    height: 100%;
    text-align: center;
    font-size: 5dvh;
}

.search-bar:hover { 
    animation: gradientanim 8s linear infinite;
}

.search-bar-gradient-trigger {
    animation: gradientanim 8s linear infinite;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}


@keyframes gradientanim {
    0% {
        box-shadow: 0 0 20px #0000ff;
    }

    25% {
        box-shadow: 0 0 20px #ff8080;
    }

    50% {
        box-shadow: 0 0 20px #0000ff;
    }

    75% {
        box-shadow: 0 0 20px #ff8080;
    }

    100% {
        box-shadow: 0 0 20px #0000ff;
    }
}

.sections {
    text-align: left;
    max-width: fit-content;
}

.section {
    margin: 3dvh;
    margin-top: 0px;
    background-color: #202324;
    border-radius: 2dvh;
    padding: 3dvh;
    display: flex;
    justify-content: left;
}

.section:hover {
    animation: gradientanim 5s linear infinite;
    background-color: #2b2d2e;
    transition: box-shadow .1s ease-in-out;
}

.image-container {
    margin-right: 3dvh;
}

.image-container img {
    height: auto;
    width: 8dvh;
}

.title {
    font-size: 3dvh;
    margin: 0px;
    padding: 0px;
    padding-bottom: 2dvh;
    word-wrap: break-word;
}

.description {
    font-size: 3vh;
    margin: 0px;
}

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

a {
    color: #fff;
    text-decoration: none;
}

.footer {
    text-align: center;
    font-size: 3dvh;
}

.alwaysonglow{
    animation: gradientanim 5s linear infinite;
}