/* Background: rgb(22, 25, 29) */
/* Accent: rgb(170, 26, 26) */

body {
    background: linear-gradient(120deg, rgb(20, 20, 20), rgb(10, 10, 10));
    font-family: "Fredoka";
    font-weight: 100;
    text-align: center;
    user-select: none;
    margin: 10px;
}
h1, h2, h3, h4 {
    color: rgb(35, 167, 219);
    text-shadow: 0px 0px 5px rgba(35, 167, 219, 0.5);
}
p {
    color: rgb(128, 128, 128);
    text-shadow: 0 0 5px rgba(128, 128, 128, 0.5);
}
hr {
    background-color: rgb(43, 43, 43);
    border: none;
    width: 60%;
    height: 1px;
}
a {
    color: rgb(35, 182, 219);
    text-shadow: 0 0 10px rgba(35, 182, 219, 0.5);
    text-decoration: none;
    font-weight: bold;
    transition: color 200ms;
}
a:hover {
    color: rgb(133, 231, 255);
}
.item {
    background-color: rgb(29, 29, 29);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px;
    width: 300px;
    cursor: pointer;
    transition: all 200ms;
}
.item:hover {
    background-color: rgb(39, 39, 39);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}
img {
    border-radius: 10px;
    width: 300px;
}
