
.workbench-<uniquifier> {
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
background-color: black;
padding: 20px;
}

h1 {
color: rgb(0, 0, 0);
font-family: 'Workbench', sans-serif;
font-size: clamp(1rem, 3rem, 4rem);
position: fixed;
background-color: rgb(217, 255, 0);
padding: 10px;
}

h2 {
color: white;
font-size: 1.5em;
font-family: 'Verdana', sans-serif;
}

h3 {
color: white;   
font-size: 1.2em;
font-family: 'Georgia', serif;
font-weight: normal;
}

p {
color: white;
font-size: 1.2em;
font-family: 'Verdana', sans-serif;
}

p-2 {
color: white;
position: fixed;
font-family: 'Workbench', sans-serif;
font-size: 1em;
text-align: justify;
text-justify: inter-word;
bottom: 5%;
}

a {
color: rgb(230, 0, 153);  
}

a:hover {
color: rgb(217, 255, 0);
}

.my-text{
  height:auto;
  width:500px;
  border:1px solid rgb(217, 255, 0);
  overflow:auto;
  position: relative;
  padding: 20px;
  margin: 20px;
  background-color:rgb(0, 0, 0);
}

img {
    display: block;
    max-inline-size: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3px;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 33.33%;
  padding: 0 3px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}


.columns {
  column-count: 3;
  column-gap: 40px;
  column-fill: balance;
}

.grow {
  transition: all 0.3s ease-in-out;
}

.grow:hover {
  transform: scale(1.3);
}

.shrink {
  transition: all 0.2s ease-in-out;
}

.shrink:hover {
  transform: scale(0.9);
}

.bright {
  transition: all 0.5s ease-in-out;
}

.bright:hover {
  filter: brightness(1.2);
}

.noHover{
    pointer-events: none;
}

/* CSS Styling */
.invert-hover {
  /* Smooth transition effect */
  transition: filter 0.5s ease; 
}

.invert-hover:hover {
  /* Inverts the colors completely */
  filter: invert(100%) brightness(0.85) contrast(1.15); 
}