@charset "utf-8";
/* CSS Document */

html {
    font-size: 62.5%;
    /* 62.5% of the base size of 16px = 10px */
    height: 100%;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

.clearfix::before,
.clearfix::after {
    content: "";
    clear: both;
    display: block;
}

.hidden {
    display: none;
}

.unvisible {
    animation: hide .2s forwards;
}

@keyframes hide {
    0% {
        opacity: 1;
        z-index: 10;
    }

    100% {
        opacity: 0;
        z-index: -1;
    }
}

body {
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;

    background-repeat: no-repeat;
    background-size: cover;
    font-weight: 300;
    font-family: 'poppins', sans-serif;
    font-size: 1.6rem;
    /* reset 10*1.6px, to make sure you do not get any 10px around */
    color: #fff;    
    text-align: center;
    position: relative;
}
a {
    cursor: pointer;
    text-decoration: none;
}

/* Lay-out */
#wrapper {
    position: relative;
    height: 100vh;
}

#wrapper.login {
    filter: blur(30px);
    backdrop-filter: blur(30px);
}

#login {
    position: absolute;
    z-index: 5;
    left: 50%;
    margin-left: -35rem;
    top: 25rem;
    text-align: right;
}

#login h1 {
    font-size: 7rem;
    font-weight: 300;
}

#login label {
    font-size: 4rem;

}

#login #asking-name {
    width: 40rem;
    height: 5rem;
    line-height: 4rem;
    font-size: 4rem;
    color: #fff;
    background: transparent;
    border: 0 solid #fff;
    
}

input:focus {
    outline: none;
}

#login form {
    position: relative;
}

#login button {
    background: transparent;
    border: 0 solid #fff;
    position: absolute;
    right: 0;
    bottom: 1rem;
    opacity: 0.6;
    cursor: pointer;
}

#login hr {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40.5rem;
    border: 0 solid #fff;
    border-bottom: 1px solid #fff;
}

#modal {
    width: 100%;
    min-height: 100vh;
    background: rgba(220, 127, 161, 0.15);
    position: absolute;
    z-index: 2;
}

/* quote */
.quotes {
    width: 100%;
    min-height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.5rem;
    font-weight: 200;
    background: linear-gradient(0.25turn, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15));
}

.quotes #author {
    margin-left: 2rem;
    font-size: 1.3rem;
}

/* center .clock .greetings .dock */

/* weather */
#wrapper .weather {
    position: absolute;
    left:50%;
    margin-left:-5rem;
    top:7%;
    z-index: 10;
}
#wrapper .weather span:last-child {
    font-size:1.3rem;
    opacity: 0.6;
}


/* .clock */
#wrapper .clock {
    opacity: 0.7;
    width: 55rem;
    position: absolute;
    left: 50%;
    top: 30rem;
    margin-left: -30rem;
}

#wrapper .clock h2 {
    font-size: 14rem;
    font-weight: 400;
    color: #fff;
    text-align: left;
    margin-left: 3rem;
}
/*
#wrapper .clock.light::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0.2rem;
    bottom: 3rem;
    left: 2rem;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
#wrapper .clock.dark::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0.2rem;
    bottom: 3rem;
    left: 2rem;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


#wrapper .clock:hover::before {
    transform: scaleX(1);
}
*/


#wrapper .clock:hover {
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.2s;
}


/* .greetings */
#wrapper .greetings {
    margin: 0 auto;
    margin-top: 50rem;
}

#wrapper .greetings h1 {
    margin-top: 3rem;
    font-size: 3rem;
    font-weight: 300;    
}

/* #to-do-form */
#wrapper #to-do-form {
    padding-top:6rem;
    width:30rem;
    margin:0 auto;
    text-align: left;     
}

#wrapper #to-do-form input {
    width:29rem;  
    height: 2rem; 
    padding: 0.5rem; 
    border:0px solid #fff;
    background: transparent;
    color:#fff;
    opacity: 0.6;
    font-size: 1.5rem;
    font-weight: 500;
}
#wrapper #to-do-form hr {
    border:0 solid #fff;
    border-bottom: 1px solid #fff;
}
::placeholder {
    color: rgba(255,255,255,0.6); 
 }
::-ms-input-placeholder {
    color: rgba(255,255,255,0.6); 
}
#wrapper #to-do-list {    
    width: 30rem;
    margin:0 auto;
    margin-top:2rem;
    max-height: 15.5rem;
    overflow-y: hidden;
    /*overflow-y: scroll;*/ 
}
#wrapper #to-do-list li {
    background: transparent;
    margin-bottom:0.5rem;
    line-height: 2.6rem;
    opacity: 0.6;
    text-align: left;
}
::-webkit-scrollbar {
    width: 0.5rem;
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.5);
    border-radius: 0.3rem;
}

#wrapper #to-do-list li button:hover {
    cursor: pointer;
}

#wrapper #to-do-list button{
    left: 0;
    margin-left:0.5rem;
    margin-right: 0.5rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 0.2rem;
    background: transparent; 
    border: 1px solid #fff;   
}




/* .dock */
#wrapper .dock {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    margin-left: -5rem;
    background: rgba(0, 0, 0, 0.5);
    width: 11rem;
    line-height: 6rem;
    border-radius: 1.4rem;
}

#wrapper .dock img {
    float: left;
    padding: 1rem 0.5rem;
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}
#wrapper .dock img:hover {
    cursor: pointer;
}

#wrapper .dock img:first-child {
    margin-left: 0.5rem;
}

#wrapper .to-do-shortcut {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    opacity: 0.6;
}

#wrapper .now-playing {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    opacity: 0.6;
    height: 3rem;
    line-height: 3rem;
    color:#fff;
    font-size: 1.3rem;
    
}
#wrapper .now-playing img {
    margin-bottom: -1.2rem;
}

