*{
    padding: 0;
    margin: 0;
    font-family: "Courier Prime";
    color:aliceblue;
 }
 
 
 .courier-prime-regular {
   font-family: "Courier Prime", monospace;
   font-weight: 400;
   font-style: normal;
 }
 
 .courier-prime-bold {
   font-family: "Courier Prime", monospace;
   font-weight: 700;
   font-style: normal;
 }
 
 .courier-prime-regular-italic {
   font-family: "Courier Prime", monospace;
   font-weight: 400;
   font-style: italic;
 }
 
 .courier-prime-bold-italic {
   font-family: "Courier Prime", monospace;
   font-weight: 700;
   font-style: italic;
 }
 
 [data-tab-content]{
    display: none;
 }
 .active[data-tab-content]{
    display: block;
 }
 
 .tabs{
    display:flex;
    justify-content: space-around;
    list-style-type: none;
    margin: 2.5vh;
    padding: 2.5vh;
    border-bottom: .5vh solid aliceblue;
 }
 
 .tab{
    padding:2vh;
    cursor: pointer;
    font-size: 3vh;
    color:aqua;
    text-shadow: 0 0 20px blue;
 
    transition: color 230ms;
    transition: text-shadow 230ms ease;
    transition: box-shadow 0.5s ease;
 }
 .tab.active{
    padding:1.5vh;
    border: .5vh solid aliceblue;
    box-shadow: 0 0 2vh white,
                0 0 6vh aqua,
                0 0 10vh blue;
    border-radius: 1vh;
    color: aliceblue;
 }
 .tab:hover{
    color:aliceblue;
    text-shadow: 0 0 2vh aqua,
                 0 0 6vh blue,
                 0 0 10vh blue,
                 0 0 20vh white;
 }
 
 .bodytext{
    background-color:rgb(61, 82, 139);
    font-size: 2.5vh;
    padding: 2vh;
    width: 55vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-30%);
    border-radius: 2vh;
    justify-content: space-around;
    list-style-type: none;
    box-shadow: 0 0 2vh aqua,
                0 0 5vh blue,
                0 0 5vh white;
 }
 
 img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
    border-radius: 5vh;
    border: .75vh solid transparent;
    transition: border 0.5s ease, box-shadow 0.5s ease, border-radius 0.5s ease;
 }
 img:hover{
    border-radius: 2vh;
    border: .75vh solid aliceblue;
    box-shadow: 0 0 2vh white,
                0 0 6vh aqua,
                0 0 10vh blue;
 }
 
 .grid__layout{
    padding: 2vh;
    display: grid;
    grid-gap: 10vh;
    grid-template-columns: repeat(auto-fill, minmax(10vh, 1fr));
    grid-auto-rows: 13.3vh;
    grid-auto-flow: dense;
 }
 .img-button{
    cursor: pointer;
    background-color: rgb(40, 59, 85);
 }
 .img-overlay{
    pointer-events: none;
    position:relative;
    top:-100%;
    left:3%;
    width:100%;
    height:97.5%;
    
    background-color: rgba(0, 0, 0, 0.6);
    
    border-radius: 5vh;
    border: 0vh solid transparent;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .5s, border-radius .5s;
    font-size: 115%;
 }
 .img-side{
    pointer-events: none;
    margin-right: 2vh;
    border-radius: 2vh;
    width: 10%;
    float:right;
 }
 
 .ico-button{
    border-radius: 1vh;
    border: 0vh solid transparent;
    width: 5vh;
 }
 .ico-button:hover{
    border-radius: 1vh;
    border: 0vh solid transparent;
 }
 
 .ico_grid__layout > div {
    display: flex;
    justify-content: center;
    align-items:  center;
 }
 .ico_grid__layout > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
 }
.ico_grid__layout{
    padding: 2vh;
    display: grid;
    grid-gap: 0vh;
    grid-template-columns: repeat(auto-fill, minmax(10vh, 1fr));
    grid-auto-rows: 5vh;
    grid-auto-flow: dense;
}

p{
    font-size: 2.5vh;
    margin: 2vh;
    text-align: justify;
}

h3{
    padding-left: 5vh;
}
ol{
    font-size: 2.5vh;
    margin: 2vh;
    padding-left: 4vh;
}



code{
    position:absolute;
    margin: 10px;
    background-color: gray;
    font-size: 10px;
 }