/* Style für community Seite */
nav a[href="community.html"] {
    color: #ff9100;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inhalts-block {
    display: flex;
    background-color: var(--überschriften);
    border-radius: 15px;
    width: 300px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
    align-items: center;
    text-decoration: none;
    margin: 20px;
    color: var(--text);
    transition: 0.3s ease;
}

.inhalts-block:hover {
    box-shadow: 0 0 20px rgba(77, 124, 255, 0.3);
    transform: translateX(10px);
}

.link-bild {
    width: 100px;
    height: 100px;
    background-color: var(--akzente);
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.link {
    flex: 1;
}

.link h3 {
    color: var(--hover);
    margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 1023px) 
{
    .inhalts-block{
        width: 450px;
        height: 200px;
    }
    main{
        margin-left: 5%;
    }
}
@media (min-width: 1024px) 
{
    .inhalts-block{
        width: 90vw;
        height: 150px;
    }
}
