* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(assets/grid.jpg);
    height: 100vh;
    margin: 0;
    overflow-wrap: normal;
}

.title {
    width: fit-content;           
    margin: 30px auto 0;
    padding: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 4px solid rgb(4, 24, 136); 
    border-radius: 50px;       
    background: white;   
    color: rgb(4, 24, 136);   
    text-align: center;  
    
}

/* Lightning Bolt Click Function */
.click-image {
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fadeOut 1s ease-out forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}


/* Button styles */
.button-54 { 
    font-family: "Doto", sans-serif; 
    font-size: 20px; 
    letter-spacing: 2px; 
    text-decoration: none; 
    text-transform: uppercase; 
    color: rgb(4, 24, 136);
    background: rgb(255, 255, 255);
    cursor: pointer; 
    border: 3px solid; 
    padding: 0.25em 0.5em; 
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px; 
    position: relative; 
    user-select: none; 
    -webkit-user-select: none; 
    touch-action: manipulation; 
} 
.button-54:active { 
    box-shadow: 0px 0px 0px 0px; top: 5px; left: 5px; 
  } 
  @media (min-width: 768px) { 
  
}

.button-54 { 
    padding: 0.25em 0.75em; 
} 

nav {
    width: fit-content;           
    margin: 10px auto 0;
    padding: 5px; 
    border: 4px solid rgb(4, 24, 136);
    border-radius: 50px;       
    background: white;      
    text-align: center; 
}

#nav-ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    padding: 10px;
    padding-top: 4px;
    padding-left: 2px;
    padding-right: 7px;
}

.nav-li {
    display: inline-block;
    padding: 0 10px;
}

#main-content {
    width: fit-content;           
    margin: 10px auto 0;
    padding: 5px; 
    border: 4px solid rgb(4, 24, 136);
    border-radius: 50px;       
    background: white;   
    color: rgb(4, 24, 136);   
    text-align: center;
}

#interest {
    width: fit-content;           
    margin: 20px auto 20px;
    padding: 15px; 
    border: 4px solid rgb(4, 24, 136);
    border-radius: 50px;       
    background: white;   
    color: rgb(4, 24, 136);   
    text-align: center;
    font-display: block;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
  width: 500px; 
  height: 400px; 
  border-radius: 50px;
}

#interest-margin {
    margin-bottom: 20px;
}
