
.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: 1.5%;
padding-bottom: 70px;
overflow-x: hidden;

}

img {
    display: block;
    max-inline-size: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3px;
}

.column {
  flex: 50%;
  padding: 0 5px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

h1 {
color: rgb(0, 0, 0);
font-family: 'Workbench', sans-serif;
font-size: clamp(1rem, 3rem, 4rem);
position: fixed; clamp(1.5rem, 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;
padding-top:20px;
text-justify: inter-word;
bottom: 5%;
}

a {
color: rgb(230, 0, 153);  
}

a:hover {
color: rgb(217, 255, 0);
}

.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;
}

