body {
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}

.window {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;

    padding: 0 15px 15px;
}

.title {
    font-size: 35px;
    background: linear-gradient(45deg, #2193b0, #ba6ded, #2193b0, #ba6ded);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 10s ease-in-out infinite alternate;
    margin-bottom: 25px;
    margin-top: 25px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);

}

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

.buttons {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px;
}

.button {
    text-align: left;
    padding: 10px;

    display: flex;
    flex-direction: row;

    justify-content: space-between;

    border-radius: 20px;
    border: 1px solid rgb(47, 47, 47);
    background: rgba(31, 31, 31, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);

    transition: background-color 0.2s ease;
}

.button:hover {
    background: rgba(40, 40, 40, 0.36);
}

.button p {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.button:hover p {
    opacity: 1;
}

.button-icon {
    filter: opacity(80%);
    transition: filter 0.3s ease;
}

.button:hover .button-icon {
    filter: opacity(100%);
}

a {
    text-decoration: none;
}

.button p {
    margin: 0 0 0 5px;
    color: white;
}

.button-title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
}

.button-description {
    font-size: 15px;
}

.button-icon {
    height: 44px;
    margin-left: 20px;
}