@font-face {
    font-family: bricolage;
    src: url(../dfcp/Bricolage.ttf);
}
body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
    color: whitesmoke;
    text-shadow: 1px 1px 3px black,1px 1px 3px black;
    font-family: bricolage;
    font-size: 1.3em;
    font-weight: bold;
}
.comeco{
    display: block;
    width: 60%;
    margin: 0 auto;
    min-height: 500px;
    padding: 100px 50px;
}
.comeco img {
    width: 170px;
    display: inline-block;
    border-radius: 100px;
    height: 170px;
}
.comeco:hover img{
    animation: crescer 3s;
}
.comeco:hover .comeco::after{
    content: "";
    position: absolute;
    left: 327px;
    top: 60px;
    width: 0;
    height: 250px;
    background: white;
    background-size: 250px;
    display: block;
    z-index: -1;
    animation: aparecer 5s;
}
@keyframes aparecer {
    from{width: 100px;}
    to{width: 200px;}
}
@keyframes crescer {
    from{padding: 80px;}
    to{padding: 0;}
}
.comeco::before {
    content: "";
    position: absolute;
    margin-left: -40px;
    margin-top: -41px;
    width: 250px;
    height: 250px;
    background: url(../fundoimg.png)no-repeat;
    background-size: 250px;
    display: block;
    z-index: -1;
}
.comeco p{
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
}
*{
    box-sizing: border-box;
}
.trabalhos ul{
    width: 500px;
    margin: 0 auto;
}
.trabalhos li {
    width: 205px;
    height: 200px;
    float: left;
    margin: 20px;
    text-align: center;
    border: 3px dashed black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.trabalhos li span{
    display: none;
    transition: 2s all;
}
.trabalhos img{
    width: 180px;
}
.trabalhos li:hover span {
    display: flex;
    position: absolute;
    height: 200px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: rgba(187, 187, 187, 0.411);
    color: blue;
    font-size: 2em;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
@media screen and (max-width: 460px) {
  .comeco{
    width: 90%;
    padding: 50px 20px;
}
.trabalhos li{
        display: block !important;
    margin: 20px auto !important;
    float: none !important;
    line-height: 13;
}
.trabalhos ul {
    width: 100%;
    margin: 0 auto;
}
}