:root {
    --trans-back-color: rgba(0,0,0,0.3);
    --windows-text-color: #000000;
    --blur-amount: 20px;

}

body {
    color: var(--windows-text-color);
    background: #051b2e;
}

.background-img {
    position: fixed;
    top: 0; bottom: 0; left: 0; right: 0;
    height: 100%;
    color: var(--windows-text-color);
    background:url('daycare.jpg') no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    z-index: 1;
}

.content {
    z-index: 2;
    font-family: Segoe UI;
    font-weight: 100;
    position: fixed;
}

.blurred-back {
    animation-name: blur;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@-webkit-keyframes blur {
0% { 
        -webkit-filter: blur(0px);
    }
100% { 
        -webkit-filter: blur(var(--blur-amount));
    }
}

@-moz-keyframes blur {
0% { 
        -moz-filter: blur(0px);
    }
100% { 
        -moz-filter: blur(var(--blur-amount));
    }
}

@keyframes blur {
0% { 
        filter: blur(0px);
    }
100% { 
        filter: blur(var(--blur-amount));
    }
}

.hideContent {
    animation-name: hideContent;
    animation-duration: 200ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -moz-animation-name: hideContent;
    -moz-animation-duration: 200ms;
    -moz-animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
}

@keyframes hideContent {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        top: 200px;
    }
}

.timeGroup {
    position: fixed;
    left: 3%;
    top: 70%;
}

.textFrame {
    padding: 7px;
    width: 300px;
}

.textFrame:hover {
    background: var(--trans-back-color);
}

.textFrameContent {
    margin: 0px;
}

.timeText {
    font-size: 140px;
    margin: 0px;
}

.dateText {
    margin: -23px 5px;
    font-size: 50px;
    font-weight: 300px;
}

.not-selectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    cursor: default;
}

.not-selectable-hoverable {
    -webkit-touch-callout: none;
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    cursor: pointer;
}

.not-selectable-clickable {
    -webkit-touch-callout: none;
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    cursor: pointer;
    color: black;
}

.not-selectable-clickable:hover {
    color: rgb(209, 203, 203);
}


.loginViewDiv {
    text-align: -webkit-center;
    text-align: -moz-center;
}

.loginForm {
    position: fixed;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    visibility: hidden;
}

.loginInnerDiv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.formView {
    text-align: center;
}

.userInput {
    margin-top: 25px;
    height: 35px;
    width: 400px;
    border: 2px solid gray;
    font-size: medium;
    padding-left: 8px;
}

.userInput:focus-visible {
    outline: white;
}

.UsernameText {
    margin: 0px 5px;
    font-size: 50px;
    font-weight: 300px;
    text-align: center;
    font-weight: 400px;
}

.userLogoBorder {
    margin-bottom: 10px;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.userLogo {
    width: 60px;
    height: 60px;
}


.searchIcon {
    width: 20px;
    height: 20px;
    padding: 5px;
    border-radius: 20px;
    background: var(--trans-back-color);
}

.searchText {
    margin-top: -42px;
    margin-left: 40px;
}


.infodiv {
    position: absolute;
    /* display: grid; */
    display: none;
    grid-template-columns: 30px 1fr;
    margin: 20px;
    z-index: 3;
}

.centerinfodiv {
    position: absolute;
    display: grid;
    grid-template-columns: 30px 1fr;
    margin: 20px;
    z-index: 4;
}

.smallIconsFrame {
    font-size: x-large;
}

.smallText {
    font-size: large;
}

.windowsButton {
    background: rgba(77, 171, 196, 0.8);
    width: 120px;
    height: 35px;
    color: white;
    border-style: none;
}

.windowsButton:hover {
    color: white;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(180, 180, 180);
}

.windowsButton:active {
    background: rgb(180, 180, 180);
    color: white;
    border-color: rgb(180, 180, 180);
}

.rotating-img {
    margin-top: 20px;
    animation-name: rotation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    -moz-animation-name: rotation;
    -moz-animation-duration:4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-fill-mode: forwards;
}

@keyframes rotation {
    from {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
