body 
{
    /* width: 100vw;
    height: 100vh; */
    margin: 0;
    overflow-x: hidden;
    background-image: url("../Images/Neon City.png");
    background-size: cover;
    background-repeat: no-repeat;
  }

h2, h3
{
    font-family: "Orbitron";
    color: #f2f2f2;
    margin-left: 20px;
}

p
{
    font-family: "Sora";
    color: #f2f2f2;
    margin-left: 20px;
}

ul
{
    list-style: none;
    max-width: 1500px;
}

li
{
    display: inline-block;
}

.outer-shape
{
    clip-path: polygon(0 0, 100% 0px, 100% calc( 100% - 30px ), calc( 100% - 30px ) 100%, 0 100%, 0 50%, 10px calc( 50% - 10px ), 10px calc( 25% + 10px ), 0 25% );    
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    width: 1200px;
    height: 700px;
    margin-top: 50px; 
    margin-left: 150px;
    border-top: 4px solid rgba(255, 0, 255, 0.3);
    border-bottom: 4px solid rgba(255, 0, 255, 0.3);
    border-left: 4px solid rgba(255, 0, 255, 0.3);
    border-right: 4px solid rgba(255, 0, 255, 0.3);
}

.inner-shape
{
    clip-path: polygon(0 0, calc( 100% - 30px ) 0px, 100% 30px, 100% 100%, 30px 100%, 0 calc( 100% - 30px), 0 50%, 10px calc( 50% - 10px ), 10px calc( 15% + 10px ), 0 15% );    position: relative;
    width: 1150px;
    height: 200px; 
    top: 20px;
    left: 20px;
    opacity: 0.8;
    background: rgba(60, 20, 80, 0.3);
}

.inner-shape-title
{
    clip-path: polygon(0 0, calc( 100% - 30px ) 0px, 100% 30px, 100% 100%, 0 100% );
    position: relative;
    width: 500px;
    height: 50px; 
    top: 20px;
    left: 50px;
    opacity: 1;
    background: rgba(55, 0, 55, 0.3);
}

.flip-card 
{
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    margin-left: 100px;
}

.flip-card-inner 
{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner 
{
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back 
{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front 
{
    background-color: #bbb;
    color: black;
}

.flip-card-back 
{
    background-color: black;
    color: white;
    transform: rotateY(180deg);
}

.flip-card-front-text
{
    position: absolute;
    bottom: 8px;
    left: 16px;
    text-transform: uppercase;
    text-align: left;
}

@media screen and (max-width:800px) 
{
    .outer-shape 
    {
        width:100%;
        margin-top: 0;
        margin-left: 0;
    }
    .inner-shape 
    {
        width: 90%;
    }
    .inner-shape-title
    {
        width: 80%;
    }
    .flip-card
    {
        width: 100%;
        margin-left: 0;
    }
    li
    {
        display: block;
    }
}