.onlydev-container
{
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 5px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, 0%);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    backdrop-filter: blur(3px);
    border-radius: 50px;
    overflow: hidden;
    transition: 0.5s;
}

.onlydev-container *
{
    opacity: 0%;
}

.onlydev-container:hover
{
    top: 0px;
    width: 50vw;
    border-radius: 0px 0px 5px 5px;
}

.onlydev-container:hover *
{
    opacity: 100%;
}

.onlydev-item *
{
    color: white;
}

.onlydev-item a
{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: smaller;
}

.custom-select select {
    display: none;
}

.devlogo
{
    opacity: 100% !important;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
}

.devlogo span
{
    width: 35px;
    height: 35px;
    opacity: 100% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    font-weight: bold;
    color: red;
    letter-spacing: 3px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

.onlydev-container:hover .devlogo
{
    display: none;
}
