.codes {
    position: relative;
}

.codes_head {
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(50deg, #ff8725, #e903f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
}

.codes_list {
    position: relative;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.codes_list-item {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: relative;
    height: 350px;
    width: calc(100%/2 - 160px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    /*border-radius: 10px;*/
    text-align: center;
}

.codes_list-background {
    background-size: cover;
    background-repeat: no-repeat;
    /*border-top-right-radius: 10px;*/
    /*border-top-left-radius: 10px;*/
    width: 100%;
    height: 50%;
}

.codes_list-head {
    background: linear-gradient(50deg, #ff8725, #e903f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 24px;
    font-weight: 500;
}

.codes_link {
    margin-bottom: 30px;
    padding: 0.5em 1em;
    background-color: white;
    border: 1px solid black;
    cursor: pointer;

    font-size: 16px;
    font-weight: 400;
}

.disabled {
    background-color: rgba(229, 229, 229, 0.692);
}