.start_section{
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--component);
}

/* image */

.start_section img{
    width: 100px;
    height: 100px;
    opacity: 0.7;
}

/* title */

.start_section h2{
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    color: var(--text1);
}

/* link */

.start_section a{
    font-size: 13px;
    margin-top: 10px;
    text-decoration: underline;
    color: var(--blue);
    transition: 0.3s;
}

.start_section a:hover{
    cursor: pointer;
    opacity: 0.7;
}

/* --- Media --- */

@media screen and (max-width: 500px) {
    
    .start_section h2{
        width: 90%;
        text-align: center;
    }

}