body {
    background: radial-gradient(circle, #0009, #000), url(../../midias/wallpaper.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.card {
    font-family: monospace;
    margin: 20px;
    border: 4px solid #0000;
    padding: 10px;
    margin: 10px;
    width: 350px;
    height: 188px;
    background-color: #000;
    box-shadow: 0 0 20px #000;
    user-select: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0;
    transform: translateY(20px);
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transition: all 0.1s ease;
    border-radius: 8px;
    overflow: hidden;
}

.card:hover {
    box-shadow: inset 0px 0 500px #000;
    color: #fff;
    border: 4px solid #fff
}

#distroContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    font-family: monospace;
    margin-bottom: 30px;
  }

.card.show {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    color: #fff;
    font-size: 38px;
    margin-left: 10px;
    margin-bottom: 15px;
}

h3 {
    color: #fff;
    font-size: 24px;
}

.card p {
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    color: #fff5;
    transition: all 0.1s ease;
}

.card p:hover {
    color: #fff;
}

.card img {
    position:absolute;
    width: 60px;
    top: 5px;
    right: 5px;
}

input[type="text"] {
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 25px;
    width: calc(100% - 22px);
    background-color: #0005;
    height: 36px;
    border: 1px solid #ddd8;
    border-radius: 0px;
    color: #fff;
    font-size: 36px;
}

input[type="text"]:hover {
    border: 4px solid #fff;
    margin-bottom: 17px;
    margin-top: 22px;
    padding-right: 7px;
    padding-left: 7px;
}

label {
    color: #fff9;
    margin-left: 30px;
    font-size: 18px;
}

* {
    outline: none
}