@font-face {
    font-family: Azonix;
    src: url('fonts/Azonix.otf');
}


html {
    height: 100%;
    margin: 0;
    color: rgb(255, 255, 255);
    
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;

    background: radial-gradient(circle at 50% 0%, #000000, rgba(11, 11, 11, 0)), radial-gradient(circle at 50% 100%, #0072a2,  #000000);
    background-attachment: fixed;
    background-size: cover;
    --scrollbar-track: rgb(61, 75, 83);
    --scrollbar-thumb: #00c3c391;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

body {
    padding-bottom: 20px;
    margin: 0%;
}

/* TOP MENU */
.top-menu {
    font-weight: 600;
    text-align: center; /* Center the menu */
    box-sizing: border-box;

    border-radius: 10px;
    border-color: #5ea9bb;
    border-width: 2px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 1px;
    border-left-width: 0px;
    border-style: solid;
    background-color: rgba(1, 1, 0, 0.243);
    position: fixed;

    top: 0;
    left: 0;
    width: 100%;
    padding: 10px; /* Adjust padding as needed */
    z-index: 1000; 
    backdrop-filter: blur(20px); /* Adjust the blur radius as needed */
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
  }
  
  .top-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block; /* Make the menu items display inline-block */
  }
  
  .top-menu li {
    display: inline-block; /* Display menu items inline */
  }
  
  .top-menu li a {
    display: block;
    color: white;
    text-align: center;
    font-size: min(1em, 10vw);
    padding: 10px 15px; /* Adjust padding to make the menu smaller */
    text-decoration: none;
    border-radius: 10px;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .top-menu li a:hover {
    background-color: #76d9eb56;
    transform: scale(1.1);
    transition: 0.05s;
  }

.titletop {
    font-family: Azonix;
    font-size: 5.2em;
    text-align: center;
    width: 100%;
    margin-top: 1.5em;
    margin-bottom: -3%;
    text-shadow: 3px 3px 0px rgb(0, 0, 0);
    transition: 0.3s;
    color: #48e7ff;
}

p {
    color: rgb(255, 255, 255);
    text-align: justify;
    font-size: max(1.1em, 0.5vw);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.575);
    margin: 0%;
    padding-bottom: 0.7em;
}

::-moz-selection {
    background-color: #00fff216;
    color: #00d0ff;
}

::selection {
    background-color: #00fff216;
    color: #00d0ff;
}

h1 {
    color: rgb(255, 255, 255);
    font-size: max(2.5em, 0.8vw);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.575);
    margin: 0%;
    padding-bottom: 0.3em;
}

h2 {
    color: rgb(255, 255, 255);
    font-size: max(1.5em, 0.6vw);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.575);
    margin: 0%;
    padding-bottom: 0.5em;
}

ul {
    color: rgb(255, 255, 255);
    text-align: justify;
    font-size: max(1.8vmin, 18px);
    margin: 2%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.575);
}

li {
    color: rgb(255, 255, 255);
    text-align: justify;
    font-size: max(1.8vmin, 18px);
    margin: 0%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.575);
}

b {
    color: rgb(255, 255, 255);
    text-align: justify;
    margin: 0%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.575);
}

.box {
    border-width: 2px;
    border-radius: 10px;
    border-style: solid;
    border-color: #5ea9bb;
    background-color: rgba(1, 1, 0, 0.2);
    padding: 20px;
    transition: 0.1s;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.372)
}

.box:hover {
    scale: 103%;
    transition: 0.1s;
}

.box ul {
    margin: 0%;
}

.image {
    width: 10%;
    min-width: 8vw;
    width: max(8vw, 100px);
    object-fit: cover;
    transition: 0.3s;
    border-radius: 15%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.image:hover {
    transition: 0.3s;
    transform: scale(1.1);
}

.icon {
    width: 20%;
    min-width: 40px;
    object-fit: cover;
    transition: 0.1s;
    border-radius: 15%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.icon:hover {
    transition: 0.1s;
    transform: scale(1.2);
}

.button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid; /* Set a transparent border */
    border-color: #48e7ff;
    border-radius: 5px; /* Adjust the border-radius to make it rounded */
    text-decoration: none;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
    background-color: transparent; /* Set background-color to transparent */
    transition: 0.05s;
}
.button:hover {
    transition: 0.1s;
    transform: scale(1.1);
}

.button:active {
    transition: 0.05s;
    transform: scale(1.05);
    background-color: #8153e4;
}

.row {
    display: flex;
    justify-content: space-around;
    width: 60%;
    text-align: center;
    align-items: center;
    transform: translate(34%, 0);
  }


.column {
    flex: 100%;
    align-content: center;
    padding: 5px;
    text-align: center;
}

a:link {
    color: rgb(173, 202, 255);
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: rgb(179, 131, 183);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: rgb(123, 255, 148);
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}

#image-gallery { 
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
  
#image-thumbs { 
    display: flex; 
    justify-content: center; 
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
}

#current-image { 
    max-height: 600px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2%;
    text-align: center;
} 

.thumb { 
    width: 80px; 
    height: 80px; 
    object-fit: cover; 
    margin-right: 10px; 
    cursor: pointer;
    transition: 0.3s;
    transform: scale(1.0);
}

.thumb:hover {
    transition: 0.3s;
    transform: scale(1.1);
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 2px solid #5ea9bb;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.372);
    margin: 1em 0;
    padding: 0;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
/* Create two equal columns that sits next to each other */
.image-column {
    flex: 33.33%;
    padding: 0 4px;
}

.image-column img {
    margin-top: 8px;
    object-fit: cover;
    width: 15em;
    height: 15em;
    vertical-align: middle;
    transition: 0.1s;
    cursor: pointer;
}

.image-column img:active {
    scale: 250%;
    transition: 0.1s;
}

.inputText {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
}