@charset "UTF-8";
* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif; }

@keyframes appear {
  0% {
    opacity: 0; }
  100% {
    opacity: 100%; } }

body {
  background: #74ebd5;
  background: -webkit-linear-gradient(to right, #ACB6E5, #74ebd5);
  background: linear-gradient(to right, #ACB6E5, #74ebd5);
  overflow: hidden;
  height: 100%; }

@media (orientation: landscape) and (max-width: 680px) {
  body {
    overflow: visible;
    padding: 150px 0; } }

::-webkit-scrollbar {
  width: 5px; }

::-webkit-scrollbar-track {
  background: #f1f1f1; }

::-webkit-scrollbar-thumb {
  background: #74ebd5; }

::-webkit-scrollbar-thumb:hover {
  background: grey; }

a {
  text-decoration: none;
  color: #000000;
  font-size: .8em; }

@media only screen and (min-width: 450px) {
  a {
    font-size: 1em; } }

h1 {
  font-size: 1.7em; }

@media only screen and (min-width: 450px) {
  h1 {
    font-size: 2em; } }

h2 {
  font-size: .8em;
  font-weight: lighter;
  color: #AAB5AD; }

.wraper-container {
  display: flex;
  height: 100vh;
opacity: 0.8;
margin: -40px
}

@media only screen and (min-width: 450px) {
  .wraper-container {
    align-items: center;
    justify-content: center;
  } }

.container {
  background-color: #F7F4F4;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 4px 4px 12px rgba(0, 0, 0, 0.25);
  animation-name: appear;
  animation-duration: 1.5s;
  height: 100vh;
  width: 100vw; }

@media only screen and (min-width: 450px) {
  .container {
    width: 400px;
    height: 550px;
    border-radius: 21px; } }

.nav {
  width: 100%;
  background: #F6F4F4;
  border-bottom: 1px solid #FFFFFF;
  box-shadow: inset -4px -4px 12px rgba(199, 199, 199, 0.25); }
  .nav__menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 4% 16% 0 16%; }
  .nav__item--active {
    font-weight: 600;
    color: #000000;
    padding-bottom: 4%;
    border-bottom: 2px solid #74ebd5;
    transform: translateY(1px); }

@media only screen and (min-width: 450px) {
  .nav {
    border-radius: 21px 21px 0px 0px; } }

main {
  display: flex;
  flex-direction: column; }

.current-date {
  text-align: center;
  padding-top: 15%;
  padding-bottom: 4%; }

.add-form__input {
  height: 40px;
  width: 70%;
  padding: 2px 10px;
  background-color: #F6F6F6;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: -4px -4px 4px rgba(255, 255, 255, 0.8), 4px 4px 8px rgba(209, 205, 199, 0.8);
  border-radius: 25px;
  display: block;
  margin: 4% auto;
  margin-bottom: 30px; }
  .add-form__input:focus {
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 4px 4px 12px #FFFFFF, -4px -4px 12px rgba(209, 205, 199, 0.8); }

.tasks {
  display: block;
  height: 188px;
  color: black;
  list-style: none;
  text-align: left;
  line-height: 1.9em;
  font-size: .9em;
  padding: 5px 60px 0 60px;
  overflow: auto; }
  .tasks__label input {
    opacity: 0;
    position: absolute; }
  .tasks__label .checkbox-custom {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 8px;
    margin-right: 15px;
    background: #F6F6F6;
    border: 1px solid #F4F4F4;
    box-shadow: -2px -2px 4px #FFFFFF, 2px 2px 4px rgba(209, 205, 199, 0.8);
    border-radius: 2px; }
  .tasks__label .checkbox-custom::after {
    content: "✓";
    margin-left: 30px;
    opacity: 0; }
  .tasks__label input:checked ~ .checkbox-custom {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #F6F6F6;
    border: 1px solid #F4F4F4;
    box-shadow: 2px 2px 4px #FFFFFF, -2px -2px 4px rgba(209, 205, 199, 0.8);
    border-radius: 2px; }
  .tasks__label input:checked ~ .checkbox-custom::after {
    position: relative;
    color: black;
    font-weight: 600;
    font-size: 12px;
    top: -6px;
    left: 2px;
    opacity: 1; }
  .tasks li {
    text-indent: -30px;
    padding-left: 2em; }

@media only screen and (min-width: 450px) {
  .tasks {
    padding: 5px 60px 0 65px; }
    .tasks input {
      cursor: pointer; } }

.checked {
  text-decoration: line-through;
  color: grey; }

.check-text {
  cursor: pointer; }

.archive {
  position: fixed;
  padding: 20px;
  right: 0;
  bottom: 0; }
  .archive__circle-button {
    width: 55px;
    height: 55px;
    cursor: pointer;
    outline: none;
    background: #F6F4F4;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: -4px -4px 4px rgba(255, 255, 255, 0.5), 4px 4px 12px rgba(209, 205, 199, 0.5); }
    .archive__circle-button:active {
      box-shadow: 4px 4px 12px #FFFFFF, -4px -4px 12px rgba(209, 205, 199, 0.5); }

@media only screen and (min-width: 450px) {
  .archive {
    position: relative;
    padding: 20px;
    align-self: flex-end; } }

    #myVideo {
      left: 50%;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    }

    .footer{
    position: fixed;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: -20px;
    height: 40px;
    width: 100%;
    }

