@property --bg {
  syntax: "<color>";
  inherits: false;
  initial-value: #0b1018;
}
@property --bg2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #191a2b;
}
@property --pink {
  syntax: "<color>";
  inherits: false;
  initial-value: #760045;
}
@property --green {
  syntax: "<color>";
  inherits: false;
  initial-value: #cbf8b6;
}
@property --blue {
  syntax: "<color>";
  inherits: false;
  initial-value: #616abc;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html{
    font-family: 'DM Sans','segoe UI', Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 200;
    background-color: var(--bg2);
    background:linear-gradient(var(--bg) ,var(--bg) 50%,var(--bg2) 50%,var(--bg2));
    color: white;
    max-width: 700px;
    justify-self: center;
}

.title{
    font-family: 'Instrument Serif',sans-serif;
    font-style: italic;
    
    position: absolute;
    padding: 5px;
    z-index: 3;
    top: 0;
    left: 8%;
    
    font-size: 45px;
    
    -webkit-text-stroke: 1px white;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.title#bottom{
    z-index: 2;
    
    -webkit-text-stroke: 8px var(--bg);   
}

body{
    background-color: var(--bg);
    margin: 32px 20px;
    padding: 40px 5px;
    border: white solid 2px;
    border-radius: 25px;
}

.banner{
    justify-self: center;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    
    align-content: center;
    justify-content: flex-start;
    
}
a.banner{
    margin: 5px;
    height: 25px;
    min-width: 100px;
    
    justify-content: center;
    align-content: center;
    
    background-color: var(--bg); 
    color: var(--green);
    
    font-style: italic;
    font-weight: 800;
    

    
    border-radius: 10px;
    border: solid var(--pink);
    
    
}
main{
    padding: 10px 20px;
    font-size: 14px
}
.header{
    font-family: Georgia, serif;
    font-weight: bold;
    font-style: italic;
    color: var(--blue);
    font-size: 25px;
}
.showReel{
    position: relative;
    display: flex;
    padding: 0;
    height: fit-content
    
}
.artboard{
    list-style-type: none;
    flex: 0 0 25%;
}
.cycleboard{
    list-style-type: none;
    flex: 0 0 25%;
}
.artboard:hover{
    z-index: 2;
    transform: scale(1.1);
}


.cycleList{
    list-style-type: none;
    z-index: 1;
    font-size: 3vw;
    color: #fffa;
    background:linear-gradient(to right,#0000,var(--bg));

    border: none;
    position: relative;
    flex: 0 0 25%;
    width: 40%;
    height: 100%;
    right: 40%;
}
.cycleList#cycleListr{
    background:linear-gradient(to left,#0000,var(--bg));
    /*background-color: red;*/
    right: 500%;
}
.cycleList:hover{
    color: white;
}
.cycleList:disabled{
    color: #0007;
    background: #0000;
    /*opacity: 0;*/
}
.cycleList#cycleListr:disabled{
    color: #0007;
    background: #0000;
    /*opacity: 0;*/
}

