Espaçamento sobrando em branco

Não sei porque lá na parte inferior direita a borda preta ficou com um espaço em branco :((

<div id="container1">
  <span class="marcobruno">Marco Bruno</span><br>
  <span class="frontenddeveloper">Front-End Developer</span>
</div>

<div>
  <img class="photo1" src="assets/img/photo.png">
</div>

<div>
  <img class="photo2" src="assets/img/photo2.png" alt="">
</div>
#container1 {
    background-color: gray;
    width: 627px;
    height: 184px;
    position: relative;
    left: 91px;
    top: 116px;
    box-shadow: 10px 10px 0 black;
    z-index: 2;
}

.marcobruno {
    font-family: 'Press Start 2P', cursive;
    color: #F25A70;
    font-size: 40px;
    margin-left: 90px;
    line-height: 110px;
}

.frontenddeveloper {
    font-family: 'Press Start 2P', cursive;
    color: white;
    font-size: 30px;
    text-align: center;
    margin-left: 40px;
}

.photo1 {
    position: relative;
    bottom: 184px;
    z-index: 1;
    border-right: solid black 5px;
    border-bottom: solid black 10px;
}

.photo2 {
    position: relative;
    bottom: 995px;
    z-index: 0;
    border-bottom: solid black 11px;
}