*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    background-color: #5525BE;
    color: #1E0458;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    text-align: center;
    margin: 20px 0 20px 0;
    padding: 0;
}

.botMargin{
    margin-bottom: 10px;
}

.horiCenter{
    width: 100%;
}

.hug {
    display: inline-block;
}

.segment{
    padding-top: 20px;
    padding-bottom: 20px;
}

.unselectable{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.panel{
    background: #8430FF;
    color: #1E0458;
    border-radius: 25px;
    overflow: hidden;
    max-height: 0;
    transition: max-width 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.panel a:link { color:#00e1ff; }

.panel a:visited { color:#00e1ff; }

.content{
    padding: 20px;
}

.collapsible{
    background-color: transparent;
    display: block;
    color: #8430FF;
    cursor: pointer;
    outline: none;
    border: none;
    padding: none;
}

#parent{
    background-color: black;
}

#info{
    color: #8430FF;
    position: absolute;
    padding: 10px;
}

#pixiPlayground{
    width: 100%;
    height: 300px;
}

.stack{
    float: left;
    position: relative;
    width: 100%;
}

.inside{
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    color: #5525BE;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#guilty{
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

#about{
    background-color: #1E0458;
    color: #8430FF;
    text-align: center;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
}

.longtext{
    text-align: left;
}

#social{
    color: #8430FF;
}

#foot{
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
}

#foot:hover{
    color: #C0D3A3;
}

a:link{
    color: #8430FF;
    text-decoration: none;
  }
  
a:visited{
    color: #8430FF;
    text-decoration: none;
  }
  
a:hover{
    color: #00e1ff;
    text-decoration: none;
  }
  
a:active{
    color: #ff30c1;
    text-decoration: none;
  }

#links{
    text-align: center;
    width: 100%;
    position: relative;
}

svg{
    background:none;
    background-color: none;
    display: inline-block;
    height: 50px;
    margin: 0 10px;
    fill: #8430FF;
    -webkit-transition: height 1s; /* Safari prior 6.1 */
    transition: height 1s;
}

svg:hover{
    height: 55px;
    -webkit-animation-name: svgGlow; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
    animation-name: svgGlow;
    animation-duration: 2s;
}

  /* Safari 4.0 - 8.0 */
@-webkit-keyframes svgGlow{
    from {fill: #8430FF;}
    to {fill: #C0D3A3;}
}
  
/* Standard syntax */
@keyframes svgGlow{
    from {fill: #8430FF;}
    to {fill: #ff30c1;}
}