.banner {
    height: 600px;
    background-image: url("https://i.pinimg.com/originals/06/be/df/06bedfb3ed400da352159a4e4807645d.gif");
    background-repeat: no-repeat;
    background-size: cover;

    border-top: 5px solid var(--color-black-first);
    border-bottom: 5px solid var(--color-black-first);

    position: relative;

}

.banner-content{
    
    position: absolute;
    top: 116px;
    left: 90px;
    max-width: 620px;
    
    font-family: "Press Start 2P", monospace, sans-serif;
}

.buttons-section {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 38px;
}

.banner #image-author {
    position: absolute;
    bottom: 30px;
    right: 50px;
    color: var(--color-third);
    text-decoration: none;

    margin-left: 10px;
}

@media screen and (max-width: 800px) {
    .banner {
        display: flex;
        justify-content: center;
    }
    .banner-content {
        position: static;
        margin-top: 116px;

        width: 90%;
    }
}