h2{
    color:#f1efe8;
}
.seasons {
    background: rgb(133,19,112);
    background: linear-gradient(180deg, rgba(133,19,112,1) 0%, rgba(255,1,222,0.8393951330532212) 100%);
    padding: 20px;
    padding-bottom: 40px;
}

.season{
    display: inline-block;
    width:90%;
    background-color: #aa249c;  
    position: relative;  
    border-radius:10px;
    padding: 15px 3%;
    color:#f1efe8;   
    transition: width 2s, height 2s, background-color 1s, transform 2s;    
    -webkit-box-shadow: 0px 5px 18px 1px rgba(0,0,0,0.5); 
    box-shadow: 0px 5px 18px 1px rgba(0,0,0,0.5); 
    transition: width 2s, height 2s, border-color 1s, transform 2s; 
}

.season:hover{
    background-color: #471c79; 
    color:#f1efe8;
}

.seasonRow {
    margin-bottom: 20px;
    margin-left: 0px;
    margin-right: 10px;
    max-height: 160px;
}

@media only screen and (max-width: 768px) {
    .seasonRow {
        max-height: max-content;
    }
}

.season .imageWrapper{
    display: flex;
    margin: 0px;    
    width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 100% 100%, rgba(255,255,255,0) 0, rgba(255,255,255,0) 8px, transparent 8px) 0% 0%/10px 10px no-repeat,
            radial-gradient(circle at 0 100%, rgba(255,255,255,0) 0, rgba(255,255,255,0) 8px, transparent 8px) 100% 0%/10px 10px no-repeat,
            radial-gradient(circle at 100% 0, rgba(255,255,255,0) 0, rgba(255,255,255,0) 8px, transparent 8px) 0% 100%/10px 10px no-repeat,
            radial-gradient(circle at 0 0, rgba(255,255,255,0) 0, rgba(255,255,255,0) 8px, transparent 8px) 100% 100%/10px 10px no-repeat,
            linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0)) 50% 50%/calc(100% - 4px) calc(100% - 20px) no-repeat,
            linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0)) 50% 50%/calc(100% - 20px) calc(100% - 4px) no-repeat,
            linear-gradient(5deg, transparent 0%, #ff01de 100%);
    border-radius: 10px;
    padding: 5px;
    box-sizing: border-box;                  
}

.season .imageWrapper img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.season .number{
    display: inline-block;
    width:60px;
    height: 60px;
    font-size:30px;
    font-family: 'Yanone Kaffeesatz', sans-serif;  
    color:#f1efe8;
    font-weight: bold;
    background-color: #ff01de;
    border-radius: 50%;    
    text-align: center;
    vertical-align: middle;  
    line-height: 60px; 
    -webkit-box-shadow: 0px 5px 10px 1px rgba(0,0,0,0.5); 
    box-shadow: 0px 5px 10px 1px rgba(0,0,0,0.5); 
    transition: width 2s, height 2s, background-color 1s, transform 2s; 
    position: absolute;
    top: -10px;
    left: -10px;
}

.season .name {
    font-size:35px;
    line-height: 35px;
    font-family: 'Yanone Kaffeesatz', sans-serif;  
    margin-bottom: 0px;    
}

.season .name span {
    background-color: #160e1f;
    color:#f1efe8;
    padding: 0px 10px;
    border-radius: 5px;
    font-size: 20px;
    display: inline-block;    
    margin-bottom: 10px;    
}

.season .contentWrapper{
    padding: 10px;    
}