html,
body {
    /* font-family: "Seymour One", sans-serif;
    font-weight: 400;
    font-style: normal; */

    /* font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal; */

    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;

    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Hide scrollbars */
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
    /* Disable text selection */
    background-color: rgb(35, 27, 46);
}

img, .project-test{
    user-select: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}

body {
    background: url(../Sources/BackgroundLogo.png) no-repeat center center fixed;
    background-size: 20%;
}

#content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#content-grid {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url(../Sources/BackgroundGrid.png) repeat;
    background-size: 50px 50px;
    pointer-events: none;
    /* Ensure the background does not interfere with interactions */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Adjust black overlay opacity as needed */
    z-index: -1;
    /* Ensures the overlay is behind the content */
}

#hidden{
    visibility: hidden;
}

.social-media-icons {
    text-align: center;
    padding: 10px;
}

.social-media-icons a {
    margin: 0 10px;
    color: #ffffff;
    /* Adjust the color as needed */
    font-size: 24px;
    /* Adjust the size as needed */
}

.social-media-icons a:hover {
    color: #cccccc;
    /* Adjust hover color as needed */
}

a {
    color: #7bc6fb;
}

@keyframes animatetop {
    from {
        top: 45%;
        opacity: 0;
    }

    to {
        top: 50%;
        opacity: 1;
    }
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: scaleX(-1) translateY(6px);
    }

    50% {
        transform: scaleX(-1) translateY(12px);
    }
}

.context-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  background-color: white;
  border: 1px solid #ccc;
  list-style-type: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 170px;
}

.context-menu li {
  padding: 8px 12px;
  cursor: pointer;
}

.context-menu li:hover {
  background-color: #eee;
}

.dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.context-menu li:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 8px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    cursor: pointer;
    width: 170px;
    white-space: nowrap;
}

.dropdown li:hover {
    background-color: #eee;
}

#recycle-bin {
    visibility: hidden;
    position: fixed;
    padding: 10px;
    right: 20px;
    bottom: 20px;
    width: 155px;
    height: 155px;
    /* background:#fb46b640; */
    background-image: url("/Sources/RecycleBin.png");
    opacity: 25%;
    background-position: 90px 90px;
    background-repeat: no-repeat;
    background-size: 50px;
    /* border-radius: 8px; */
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); */
    z-index: 999;
    transition: opacity 0.5s ease;
}

#recycle-bin:hover {
    opacity: 100%;
    background-image: url("/Sources/RecycleBinHovered.png");
    background-position: 90px 70px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #8d5aa8;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #563866;
}

::-webkit-scrollbar-thumb:active {
    background: #563866;
}

::-webkit-scrollbar-track {
    background: #211522;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
    background: #211522;
}

::-webkit-scrollbar-track:active {
    background: #211522;
}

::-webkit-scrollbar-corner {
    background: transparent;
}