.section-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 86px;
}

.section-title {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 36px;
    margin: 0;
}

.cubes-row-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 13px;
    padding-bottom: 15px;
}

.cubes-row {
    display: flex;
    justify-content: center;
    gap: 60px; 
    width: 1180px;
    height: 436px;
    flex-wrap: wrap; 
}
.cube-card {
    width: 250px;
    height: 320px; 
    background: #1a6876;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; 
    cursor: pointer;
    transition: height 0.3s ease;
    position: relative;
}

.cube-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.cube-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 70px;
}

.cube-label p {
    color: rgb(255, 255, 255);
    font-size: 36px;
    text-align: center;
    margin: 0;
}





#link-timer{
    color: #48a4c0;
}

.main-content{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

@media (max-width:768px) {
    .main-content{
        margin-top: 30px;
        padding: 0 5px;
    }
    .cubes-row-wrapper{
        height: 100%;
    }
    .cubes-row{
        margin-top: 20px;
        height: fit-content;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .section-title{
        font-size: 24px;
    }
}