.option-card {
    background-color: #fff;
    border: 3px solid #111;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    box-shadow: 6px 6px 0 #111;
    font-family: inherit;
    height: 100%;
}

.option-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 #111;
}

#option_bug {
    background-color: #ffeaea;
}

#option_friend {
    background-color: #e7ffc9;
}

#option_news {
    background-color: #eaf0ff;
}

.option-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111;
}

.option-card h2 {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #111;
}

.option-card p {
    font-size: 1rem;
    color: #111;
}

.option-card-social-links {
    margin-top: 1rem;
}

.option-card-social-links a {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #111;
    transition: color 0.2s;
}
