.shoutout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.shoutout-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    text-align: center;
    padding: 0;
    margin: 0;
}

.shoutout-item h2 {
    font-size: 1.2em;
    margin: 0 0 10px 0;
}

.shoutout-item figure {
    margin: 0;
}

.shoutout-item figure img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid orange;
    border-radius: 15px;
    box-shadow: 0 0 10px 2px gray;
}

.shoutout-links {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    padding: 0;
}

.shoutout-links a {
    font-size: 24px;
    color: white;
}

.shoutout-item p {
    font-size: 1em;
    margin: 5px 0 0 0;
}