#projects .top-container {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 40px;
    gap: 25px;
}

#projects .top-container h1 {
    font-size: 3em;
    line-height: 1.2;
}
#projects .top-container h3 {
    font-size: 1.5em;
    font-family: 'Century Gothic';
    color: #172334;
}
#projects .top-container p {
    margin: 10px 0;
}

/* left */
#projects .top-container .proj-header {
    width: 50%;
}

/* right */
#projects .top-container .go-to-resume {
    width: 50%;
}
#projects .top-container .go-to-resume .box {
    border: 5px solid #9c7a8a;
    border-radius: 30px;
    padding: 20px;
}

#projects .top-container .go-to-resume .btn-box {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
}
#projects .top-container .go-to-resume .btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #E3E8ED;
    border: 2px solid #172334;
    border-radius: 30px;
    font-size: 19px;
    color: #172334;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Century Gothic';
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    padding: 3px 10px;
}
#projects .top-container .go-to-resume .btn-box a:hover {
    color: #E3E8ED;
}
#projects .top-container .go-to-resume .btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    background-color: #172334;
    transition: .5s;
}
#projects .top-container .go-to-resume .btn-box a:hover::before {
    width: 100%;
}

/* Responsive */
@media (max-width: 1000px) {
    #projects .top-container h1 {
        font-size: 2.3em;
    }
    #projects .top-container h3 {
        font-size: 1.3em;
    }
}
@media (max-width: 800px) {
    #projects .top-container .proj-header, #projects .top-container .go-to-resume {
        width: 100%;
    }
    #projects .top-container .proj-header {
        margin-bottom: 40px;
    }
    #projects .top-container {
        display: block;
        justify-content: center;
        text-align: center;
    }
    #projects .top-container .go-to-resume .btn-box {
        justify-content: center;
    }
    #projects .top-container {
        margin-bottom: 50px;
    }
}
@media (max-width: 400px) {
    #projects .top-container h3 {
        font-size: 1.2em;
    }
}
@media (max-width: 370px) {
    #projects .top-container h3 {
        font-size: 1.1em;
    }
    #projects .top-container p {
        font-size: 1.1em;
    }
}