body{
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(5px, 2vw, 24px);
    text-align: center;

    padding: 0px;
    margin: 0px;
}

.scrolling-background {
  position: fixed;  
  inset: 0;          
  overflow: hidden;
  z-index: 0;        
  pointer-events: none;
}


.scrolling-background .bg-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;             
  height: 100%;              
  background-image: url('images/BACKGROUND.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 50%;
  will-change: transform;
  animation: bg-scroll 110s linear infinite;
}

@keyframes bg-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 3.5em;
    overflow: hidden;
    position: relative;
    z-index: 1;

}

.box{
    align-items: justify;
    border: 1px solid white;
    padding: 20px;
    color: white;
    background-color: rgba(143, 143, 143, 0.2);
    width: 57%;
    position: relative;
    text-align: center;
}

.box::before{
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.75em;
    font-weight: bold;
    text-shadow: 0 0 4px #000, 0 0 4px #000;
    content: var(--title);
}


#topbar{
    border: 1px solid white;
    padding: 0.5px;
    color: gold;
    background-color: rgba(143, 143, 143, 0.2);
    padding-bottom: 0px;
    width: 60%;
    text-align: center;
}

#topbar a{
    color: white;
    text-decoration: none;
    font-size: 2em;
    padding:0.25em 0.5em;
	border-right:1px solid var(--borderColorDark);
}

#topbar a:hover{
    text-shadow: 0px 1px 10px white;
}

#topbar #bruh{
    color: gold;
    font-size: 1em;
}

#topbar #bruh:hover{
    text-shadow: 0px 1px 10px gold;
}
#navbar{
    color: white;
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    width: 100%;
    text-align: center;

}

#form{
    text-align: left;
    
}

#form input[id="name"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-family: 'Courier New', Courier, monospace;
}

#form input[id="feedback"] {
    width: 100%;
    height: 20vh;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-family: 'Courier New', Courier, monospace;
}



#form input[type="submit"] {
    padding: 10px 20px;
    font-size: 0.5em;
    font-family: 'Courier New', Courier, monospace;
}

#navbar a{
    color: white;
    text-decoration: none;
    padding: 5px;
    margin: 0;
    font-size: clamp(1px, 1.5vw, 21px);;
    border: 1px solid white;
    overflow: hidden; 
    justify-content: center;


}
#navbar a:hover{
    background-color: rgb(129, 129, 129)
 
}

#funnyimage p{
    color: white;
    font-size: 2em;
    position: relative;
    align-items: center;
}

.uhhh p{
    color: white;
    font-size: 2em;
    position: relative;
    align-items: center;
}

.uhhh a{
    color: gold;
    text-decoration: none;
}

.uhhh a:hover{
    text-shadow: 0px 1px 5px gold;
}


#funnyimage img{
    border: 1px solid white;
    width: clamp(90px, 40vw, 900px); 
    height: clamp(100px, 50vw, 1000px);
    align-items: center;

}

#gallerytext{
    color: white;
    font-size: 2em;
    position: relative;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 70%;
    margin: 0 auto;
}

.gallery{
    border: 1px solid white;
    float: left;               
    box-sizing: border-box;
    color: white; 
}
    

.gallery .description{
    padding: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
}

.gallery img{
    width: 100%;
    height: auto;
    display: block;
}

.resume img{
    width: clamp(100px, 50vw, 700px);
    height: auto;
    align-items: center;
}

table{
    color: white;
    size: 10px;
    width: clamp(10px, 400vw, 1000px);
}
th{
    font-size: 1.2em;
}
tr{
    font-size: 1em;
}

audio{
    margin: auto;
    background-color:hsl(143, 143, 143);
    width: 100%;
    height: auto;
}


#footer{
    text-align: left;
    font-size: 0.9em;
}

.icons{
    text-align: right;

}

.fa-brands.fa-facebook{
    color: hsl(0, 0%, 100%);
}

.fa-brands.fa-instagram{
    color: hsl(0, 0%, 100%);
}

.fa-brands.fa-linkedin{
    color: hsl(0, 0%, 100%);
}

.fa-brands.fa-github{
     color: hsl(0, 0%, 100%);
}

.icons :hover{
    text-shadow: 0px 0px 5px white;
}


