@font-face {
    font-family: 'determination'; src: url('DeterminationSansWeb.ttf');
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(#2b8add 1px, transparent 1px), linear-gradient(to right, #2b8add 1px, #000000 1px);
    background-size: 60px 60px;
    font-family: 'determination', 'monospace';
    color: #ffffff;
    height: 70vh;
    width: 40vw;
}

.shitass {
    margin-top: 50px;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

#kommitimg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
}

#kommitimg img {
    width: 150px;
    height: auto;
    margin-bottom: 50px;
}

.bbbb {
    background-color: #000000;
    border: 4px solid #ffffff;
    padding: 15px;
    min-height: 100px;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    font-size: large;
}

li:before {
    content: "* ";
    padding-right: 8px;
}

.asd {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.asd img {
    width: 100%;
    max-width: 110px;
    height: auto;
    transition: filter 0.1s ease;
}

.asd img:hover {
    filter: brightness(170%);
}

.patpat-active {
    animation: patpat-sequence 0.2s ease-in-out;
}

@keyframes patpat-sequence {
    0% { transform: scale(1, 1); }
    20% { transform: scale(1.1, 0.8); }
    100% { transform: scale(1, 1); }
}

.fadeout {
    animation: fadeout-sequence 6s ease-in forwards;
}

@keyframes fadeout-sequence {
    0% { opacity: 1; }
    100% { opacity: 0; }
}