body {
    margin: 0;
    cursor:url("../ui/cursor.svg"), auto;
    background-color: blue;
}

#land-button {
    user-select: none;
    color: white;
    text-decoration: none;
}

#land-button:hover {
    text-shadow: rgb(255, 255, 255) 0px 0 5px;
}

.box-icon span {
    font-family: Arial, sans-serif;
    font-size: 1.9vh;
    font-weight: light;
    color: white;
    letter-spacing: -0.5px;
}

.text-shadow {
    text-shadow: rgb(0, 0, 0) 0 2px 7px;
}

.time-and-date {
    font-family: Helvetica, sans-serif;
    color: white;
    font-weight: 300;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-shadow:rgba(0, 0, 0, 0.301) 0 4px 4px;
    position: absolute;
    z-index: -1;
    left: 2.5vw;
    bottom: 5vh;
}

#date {
    margin-top: 8px;
    font-weight: normal;
}

#label {
    font-weight: 400;
}

.textbox-text {
    background-color: white;
    border: solid white 0 px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    height: fit-content;
    font-weight: 300;
    padding: 150px;
}

.textbox-title {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom: 0.5px solid blue;
    justify-content: flex-end;
    font-weight: 700;
}

.textbox-title, .textbox-text {
    background-color: white;
    opacity: 0.8;
    height: fit-content;
    width: 200px;
    padding: 4px;
    color: blue;
    font-family: Arial, Helvetica, sans-serif;
}

.appname {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.4vh;
    position: static;
    user-select: none;
    max-height: 10vh;
}

::-webkit-scrollbar {
    width: 0.5vw;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.4) 70%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 10px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    padding: 0.3px;
}

::-webkit-scrollbar-thumb {
    background: rgb(166,229,255);
    background-image: url(../ui/scrollbar.png);
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .box-icon:active {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
  }