.login-screen {
  
  display: grid;
  position: fixed;
  top: 0;
  left: 0;
  
  background-image: linear-gradient(to bottom, hotpink, pink);
  background-attachment: fixed;
  
  width: 100vw;
  height: 100vh;

    z-index: 999;

  transition: opacity 1s;
}

.login-frame{
  position: relative;
  align-self: end;
  justify-self: center;
  --background-color: gray;

}

.login-user-photo {
  width: 150px;
  height: 150px;

  outline: solid;
  outline-color: rgba(232, 232, 232, 0.4);
  outline-width: 8px;

  border-radius: 8px;
}

.login-user-name {
  color: white;
  margin-top: 10px;
  font-size: 24px;
  text-shadow: 0 0 5px rgba(0, 0, 0, .8);
  user-select: none;
}

.login-user-photo:hover {
  filter: brightness(125%);
}

.login-user-photo:active {
  filter: brightness(150%);
}

.OS-Logo {
    display: flex;
    margin-bottom: 30px;
    font-size: 32px;

    align-items: end;
    gap: 10px;
    justify-content: center;
    user-select: none;
}