body {
    font-family: Verdana, Arial, sans-serif;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.the-bros {
    position: relative;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 98vw;
}

img {
    max-width: 100%;
}

.a-brother {
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.2s ease;
    padding: 20px;
}

a {
    color: #333;
}

.a-brother:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 1px 1px 6px rgba(255, 255, 255, 0.5);
}

.sam {
    left: 0;
    right: 50%;
}

.tomson {
    left: 50%;
    right: 0;
}
