.code-content__text h2{
	margin-bottom: 80px;
}


.mySlides {
    display: none
}

.code p {
    margin-top: 16px;
    color: var(--gray900);
}

.slideshow-navigation {
    display: flex;
    justify-content: center;
    column-gap: 24px;
    margin-top: 40px;
}

.slideshow-navigation a {
    cursor: pointer;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--base_white);
    padding: 16px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s;
}

.slideshow-navigation a:hover{
    background: var(--gray900);
}

@media (max-width: 480px){  
    
    .code-content__text h2 {
        margin-bottom: 40px;
    }

}


