/* Copyright (c) 2023 by Helmuth Hahn-Heinze */
/* Parts are from W3School */
/* Arautree for Tech */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #292929;
    /* linear-gradient(#070707, #383838); */
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.container {
    background: linear-gradient(#0e066c, #030733);
}

/* Style the side navigation */
.sidenav {
    height: 100%;
    width: 200px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #0f0f0f;
    overflow-x: hidden;
}


/* Side navigation links */
.sidenav a {
    color: beige;
    padding: 12px;
    text-decoration: none;
    display: block;
    border-bottom-style: solid;
    border-bottom-color: rgba(226, 185, 252, 0.50);
    border-bottom-width: 0.5px;
    /* 1px; */
}

/* Change color on hover */
.sidenav a:hover {
    background-color: #313131;
    color: #a8a8a8;
}

/* Style the content */
.content {
    margin-left: 200px;
    padding-left: 20px;
    color: beige;
    background: transparent;
    /* linear-gradient(to right, transparent 90%, transparent 80%, #aaa); */
    /* linear-gradient(to left, #333, #333 50%, #eee 75%, #333 75%); */
}

.grid-container {
    display: grid;
    justify-content: start;
    grid-template-columns: 200px 200px 200px 200px;
    /*Make the grid smaller than the container*/
    grid-gap: 10px;
    /*            background-color: rgba(22, 10, 111, 0.97);*/
    background-color: transparent;
    padding: 10px;
}

.grid-container > div {
    background-color: azure;
    text-align: center;
    padding: 20px 0;
    font-size: 30px;
    color: black;

}

.grid-container > div:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 5px black;
}

/*
.grid-container > .sub_div:hover {
     transform: scale(2.05);
     box-shadow: 5px 5px 5px black;
 }
*/

.hidebox {
    display: none;
}

.inactive {
    display: none;
}

.grid-container > div.active_box {
    background: #888;
    border-radius: 10px;
}

.grid-container > div.semi-active_box {
    background: rgba(136, 136, 136, 0.22);
    border-radius: 10px;
}

.active_ref {
    text-decoration: none;
    color: darkgray;
    text-shadow: 2px 2px 3px black;
}

.active_ref2 {
    text-decoration: none;
    color: rgba(169, 169, 169, 0.3);
    text-shadow: 2px 2px 3px black;
}

.semi-active {
    background: rgba(51, 51, 51, 0.34);
    color: rgba(211, 211, 211, 0.37);
}

.no-hover {
    pointer-events: none;
    box-shadow: 2px 2px 2px #000000 inset;
}

.picx_01 {
    background-image: url("n/asian_girl_200x300px.jpg");
    background-color: #902121;
    width: 200px;
    height: 300px;
    background-position: center;
}

.picx_02 {
    background-image: url("n/running_girl_01_200x300.jpg");
    background-color: #902121;
    width: 200px;
    height: 300px;
    background-position: center;
}

.picx_03 {
    background-image: url("n/girl_lean_on_wall_02_200x300.jpg");
    background-color: #902121;
    width: 200px;
    height: 300px;
    background-position: center;
}

.picx_04 {
    background-image: url("n/girl_thinking_02.200x300.jpg");
    background-color: #902121;
    width: 200px;
    height: 300px;
    background-position: center;
}
