.back{
    background:linear-gradient(90deg, #191918, #3A3A3A);
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    margin-bottom: 300px;
    padding: 60px 0;
}
.back .left{
    display: flex;
    align-items: end;
    justify-content: center;
    margin: 20px;
}
.back .right{
    display: flex;
    align-items: start;
    justify-content: center;
    margin: 40px;
}
.back .content{
    border: 2px solid var(--font-title);
    border-radius: 8px;
    padding: 15px;
    max-width: 500px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.back .content .title p{
    font-size: 2.4rem;
    color: var(--font-title);
    font-family: var(--font-secondary);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}
.back .content .body{
    font-size: 1.125rem;
    color: var(--font);
    font-family: var(--font-primary);
    text-align: justify;
}
.back .content .btn{
    background: var(--linear-orange);
    border-radius: 8px;
    padding: 6px;
    margin: 20px 0;
    font-family: var(--font-primary);
}
.back .content .btn:hover{
    cursor: pointer;
}
.back .content .btn a{
    padding: 10px;
    color: var(--font);
    font-size: 1.125rem;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.back .content .btn a svg{
    fill: var(--font);
    height: 25px;
    width: 25px;
    display: flex;
    margin-right: 15px;
    align-items: center;
    justify-content: space-around;
}
@media screen and (width <= 1400px) {
    .back .left .content, .back .right .content{
        width: 80%;
    }
}
@media screen and (width <= 1050px) {
    .back{
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    .back .left, .back .right{
        width: 100%;
        margin: 10px 0;
    }
}
@media screen and (width <= 1000px) {
    .back{
        margin-bottom: 150px;
    }
}