html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
}

/*body {
    margin: 0;
    padding: 0;
    height: 100vh;
    min-width: 1920px;
    width: 100%;
} */

.pageContainer {
    display: grid;
    grid-template-columns: minmax(1280px, 2fr) minmax(640px, 1fr);
    min-height: 100vh;
}

.mainBody {
    background-image: url('/assets/img/liminalGrass.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 0 auto auto auto;
}

/*------------------------------------------------------------------------------------------ */
/*Main Body Title*/
/*------------------------------------------------------------------------------------------ */

.titleSection {
    width: 100%;
    text-align: center;
}


.titleSection h1 {
    font-family: "StgoticW00-Regular", sans-serif;
    color: #FFFF00;
    font-size: 2.6vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
}

.sparkleDivider {
  width: 61vw;
  margin-bottom: 3vw;
  margin-top: -4vw;
  align-items: center;
}

/*------------------------------------------------------------------------------------------ */
/*Main Body Content*/
/*------------------------------------------------------------------------------------------ */

.mainBodyContainer {
    grid-column: 1;;
    display: grid;
    /* grid-template-columns: minmax(760px, 1.8fr) minmax(400px, 1fr); */
    grid-template-columns: 1.8fr 1fr;
    padding-left: 50px;
    padding-right: 50px;
    gap: 20px;
}

/*------------------------------------------------------------------------------------------ */
/*First Column*/
/*------------------------------------------------------------------------------------------ */

.primaryColumn {
    grid-column: 1;
}

.starText {
    color: azure;
    font-family: "Star3000 Large", sans-serif;
    font-size: 20px;
}

.blueChainDivider {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blueBox {
    background-color: #0000FE;
}

.blackBox {
    background-color: #000000;
    text-align: center; 
    width: 100%;
}


.pBox1,
.pBox2,
.pBox3,
.blueChainDivider {
    margin-bottom: 10px;
}

.primaryColumn h1 {
    font-size: 20px;
    font-weight: 400;
}

.pBox1 {
    justify-content: center;
    align-items: center;     
    text-align: center; 
    height: auto;
}

.pBox1 p {
    padding: 56px 36px;
    font-size: 26px;
}

.pBox2,
.pBox3 { 
    height: auto;
    padding-bottom: 5px;
}

.pBox2 p{
    padding: 20px 10px;
}

.pBox2 ul {
    list-style-type: circle;
    /*Fiks*/
}

/*------------------------------------------------------------------------------------------ */
/*Second Column*/
/*------------------------------------------------------------------------------------------ */

.secondaryColumn {
    grid-column: 2;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.sBox1,
.sBox2 {
    height: auto;
    width: 100%;
    font-size: 14px;
}

.sBox1 {
    position: relative
}

.sBox1Top {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
    padding-top: 5px;
    line-height: 10px;
}

.square1 {
    width: 20px;
    height: 20px;
    background-color: yellow;
}

.multipleSquares {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.square {
    width: 20px;
    height: 20px;
}

.square:nth-child(1) {
    background-color: yellow;
}

.square:nth-child(2) {
    background-color: #01FE03;
}

.square:nth-child(3) {
    background-color: #FF00FC;
}

.square:nth-child(4) {
    background-color: #FE0000;
}

.square:nth-child(5) {
    background-color: #02FFEA;
}

.square:nth-child(6) {
    background-color: #C0C0C0;
}

.featuredImage {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.readButton {
    position: absolute;
    top: 86%;
    width: fit-content;
    right: 8px;


    text-align: left;
    display: inline-block;
    text-decoration: none; 
    cursor: none;
/*    cursor: pointer; */
    font-family: "StarJR Large Compressed", sans-serif;
    color: white;
    font-size: 47px;
    -webkit-text-stroke-width: 1.49px;
    -webkit-text-stroke-color: #000;
}

.sBox1Bottom {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: top;            
    padding: 0 10px;
    column-gap: 10px;
}

.sBox1Bottom p:nth-child(1) {
    text-align: left;
}

.sBox1Bottom p:nth-child(2) {
    text-align: right;
}

.sBox2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sBox2 > * {
    width: 100%;       /* fill the grid cell width */
}

/*------------------------------------------------------------------------------------------ */

.portalBody {
    grid-column: 2;
    background-image: url('/assets/img/light.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 0 auto auto auto;

    position: relative;
}

.portalContainer {
    position: relative;
    margin: auto;
    top: 240px;
    left: 0;
}

.arrowLeft {
    position: absolute;
    margin: auto;
    display: block;
    scale: 210%;
    left: 150px;

    transform: rotate(30deg);
}

.arrowRight {
    position: absolute;
    margin: auto;
    display: block;
    scale: 210%;
    right: 150px;

transform: rotate(-30deg) scaleX(-1);
}

.portalImage {
    position: relative;
    margin: auto;
    display: block;

    top: 0;
    left: 0;
    scale: 120%;
    
    cursor: pointer;
}

.enter {
    position: absolute;
    margin: auto;
    display: block;
    scale: 250%;
    top: 890px;
    left: 316px;
    
    cursor: pointer;
}

.fairy {
    position: absolute;
    bottom: 100px;
    right: 660px;
    scale: 80%;
}