body {
    margin: 0;
    /* background-image: linear-gradient(#ebf5ff, #85c4ff); */
    background-color: var(--background);
    height: 100vh;
    overflow: hidden;
}
.fullscreen {
    overflow: hidden;
}
.fullscreen::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    z-index: -1;
    opacity: .04;
    background: url("../asset/repeatingBg.png") 0 0 repeat;
    transform: rotate(-30deg);
    /* animation: bgmove 10s linear infinite forwards; */
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  /* margin: 0; */
}
input[type=number] {
    appearance: textfield;
}
/* @keyframes bgmove {
    from {
        top: -100%;
        left: -100%;
    }
    to {
        top:-50%;
        left:-50%;
    }
} */
* {
    box-sizing: border-box;

}
.maincontainer {
    display:flex;
    flex-direction: column;
    gap:5px;
}
.otheractions {
    display: flex;
    /* color: var(--text); */
    padding: 5px;
    gap:10px;
    justify-content: space-evenly;
}
.otheractions > *[hide] {
    display: none;
}
.otheractions > *:not([hide]) {
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap:7px;
    font-size: 1rem;
}
.otheractions > *:hover{
    text-decoration: underline;
}
.container {
    --other: hsl(from var(--background) h s calc(l + 3));
    background-color: var(--other);
}

@media screen and (max-width: 500px) {
    .otheractions {
        flex-direction: column;
    }
}