:root {
    --text-color: #222;
    --text-default: 'DotGothic16', sans-serif;
    --text-bread: 'IBM Plex Sans', sans-serif;
    --gap-section: 80px;
    --gap-element: 40px;
}

body {
    margin: 24px;
    background-color: white;
    color: var(--text-color);
    font-weight: 300;
    font-family: var(--text-bread);
    text-align: center;
    font-size: 1.25rem;
}

#container {
    max-width: 60ch;
    margin: 0 auto;
    text-align: left;
}

#section {
    margin-bottom: var(--gap-section);
}

img {
    width: 100%;
    height: auto;
    margin-top: 16px;
}

.img-square {
    display: block;
    max-height: 375px;
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
}

.img-height {
    display: block;
    max-height: 100px;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-bottom: var(--gap-element);
}

h1 {
	font-size: 2rem;
	font-weight: 400;
	line-height: 100%;
    margin-top: var(--gap-section);
    font-family: var(--text-default);
}

h2 {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 100%;
    font-family: var(--text-default);
	
}

h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0px;
}

.experience {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin: 40px 0px 40px 0px;
    
}

.experiment {
    border: 2px solid #000; /* You can adjust the width and color of the border */
    padding: 8px 16px; /* Optional: Add padding to the link for better appearance */
    text-decoration: none; /* Optional: Remove the default underline */
    display: inline-block;
    margin-bottom: 16px;
    color: var(--text-color);
    
}

/* Below is input styling */


  
  label {
    display: block;
    font:
      1.2rem 'Space Grotesk',
      sans-serif;
  }
  
  .comboEffect input[type=text] {
    width: 100%;
    max-width: 60ch;
    padding: 1em 1em;
    margin: 8px 0;
    box-sizing: border-box;
    border: 4px solid #ccc;
    transition: 0.5s;
    outline: none;
    border-radius: 4px;
}

.comboEffect input[type=text]:focus {
    border: 3px solid #555;
    border-radius: 40px;
    outline: true;
    outline-offset: 4px;
    outline-width: 4px;
    outline-color: #000;
    outline-style: solid;
}

.comboEffect input[type=text]:valid {
    background: #AFE1AF;
    border: 3px solid green;
}

/* Basic Effect */

.basicEffect input[type=text] {
    background: white;
    border: 2px solid grey
    width: 100%;
    max-width: 60ch;
    padding: 16px;
    margin: 8px 0;
    box-sizing: border-box;
    outline: none;
    border-radius: 4px;
}

.basicEffect input[type=text]:focus {
    border: 2px solid #000;
    border-radius: 4px;
    outline: true;
    outline-offset: 2px;
    outline-width: 2px;
    outline-color: #000;
    outline-style: solid;
}

.basicEffect input[type=text]:valid {
    border: 2px solid #000;
}

.basicEffect input[type=text]:hover {
    border: 2px solid #000;
    border-radius: 4px;
    outline: true;
    outline-offset: 0px;
    outline-width: 6px;
    outline-color: lightgray;
    outline-style: solid;
}

/* Size Effect */

.sizeEffect input[type=text] {
    background: white;
    border: 2px solid grey
    width: 100%;
    max-width: 60ch;
    padding: 16px;
    margin: 8px 0;
    box-sizing: border-box;
    outline: none;
    border-radius: 4px;
}

.sizeEffect input[type=text]:focus {
    border: 2px solid #000;
    border-radius: 4px;
    padding: 24px;
}

.sizeEffect input[type=text]::not(:placeholder-shown) {
    border: 2px solid #000;
}

.sizeEffect input[type=text]:hover {
    border: 2px solid #000;
    border-radius: 4px;
    background-color: lightgray;
}

/* Simpler Effect */

.simplerEffect input[type=text] {
    background: white;
    border: 1px solid grey
    width: 100%;
    max-width: 60ch;
    padding: 16px;
    margin: 8px 0;
    box-sizing: border-box;

}

.simplerEffect input[type=text]:focus {
    outline: none;
    background-color: lightgray;
    border-width: 0 0 2px;
}

.simplerEffect input[type=text]:valid {
    border-width: 0 0 2px;
}

.simplerEffect input[type=text]:hover {
    background-color: lightgray;
}

