
@import url('https://fonts.googleapis.com/css2?family=Gaegu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Noto+Sans+Arabic:wght@500&family=Schoolbell&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gaegu', cursive;;
    scroll-behavior: smooth;
    user-select: none;
  }
  .container {
    height: 100vh;
    background-color: #084f8e;
    background-image: url(https://static.typingclub.com/m/tpmedia/img/sky2.png),
      linear-gradient(0deg, purple, #083466 80%);
    display: flex;
    flex-direction: column;
    overflow: hidden; 
  }
  .container .top {
    padding: 18px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .container .top h1 {
    color: #fff;
    font-size: 3rem;
  }
  .container .top ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }


  .container .top ul li {
    margin: 0 15px;
    position: relative;
  }
  .container .top ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 2rem;
    position: relative;
    overflow: visible;
  }
  .container .top ul li a:hover,
  .container .top ul li a.active {
    color: #bfdefa;
  }
  .container .body {
    flex: 1;
    display: flex;
    flex-direction: row;
  }
  .container .body > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
  }
  @media (max-width: 800px) {
    .container .body {
      display: flex;
      flex-direction: column;
    }
    .container .body > div {
      display: flex;
      width: 100%;
      height: 50%;
    }
    .container .top ul {
      display: none;
    }
  }
  .container .body .img img {
    width: 200px;
    height: 200px;
    box-shadow: 0 0 50px rgb(223, 238, 245);
    border-radius: 50%;
  }
  .container .body .text {
    padding: 30px;
    justify-content: left;
  }
  .container .body .text p {
    font-size: 2rem;
    color: #eee;
  }
  .container .body .text a {
    color: #083466;
    text-decoration: none;
    background-color: #fff;
    margin: 15px 0;
    padding: 5px 20px;
    font-size: x-large;
    border-radius: 5px;
    transition: 0.5s;
  }
  .container .body .text a:hover {
    box-shadow: 0 0 30px rgb(223, 238, 245);
  }
  .container .bottom {
    min-height: 150px;
    position: relative;
  }
  @keyframes move {
    from {
      background-position-x: 0;
    }
    to {
      background-position-x: 500px;
    }
  }
  .container .bottom div {
    position: absolute;
    background-position-y: bottom;
    background-repeat: repeat-x;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .container .bottom .bg1 {
    background-image: url("https://static.typingclub.com/m/tpmedia/img/clouds3.png");
    z-index: 1;
    transform: translateY(-15px);
    animation: move 15s infinite linear reverse;
    -webkit-animation: move 15s infinite linear reverse;
  }
  .container .bottom .bg3 {
    background-image: url("https://static.typingclub.com/m/tpmedia/img/clouds1.png");
    z-index: 2;
  }
  .container .bottom .bg2 {
    background-image: url("https://static.typingclub.com/m/tpmedia/img/clouds2.png");
    z-index: 3;
    transform: translateY(15px);
    animation: move 15s infinite linear;
    -webkit-animation: move 15s infinite linear;
  }
  
  .div #canva-import {
    margin: 20px;
    background-color: red;
}

/* Attach little unicorn at the bottom of the screen. */
.footer {
  /* visibility: hidden;
  opacity: 0; */
  transition: .2s;
  position: fixed;
  bottom: 1.2rem;
  left: 2vw;
  z-index: 15;
}

.footer img {
  width: 10rem;
  margin-bottom: 60vh;
  transform: rotate(180deg);

}


/* 1792x828px at 326ppi iPhone XR resolution
@media only screen 
    and (device-width : 414px) 
    and (device-height : 896px) 
    and (-webkit-device-pixel-ratio : 2) {


      * {
        font-size: 10px;
        overflow: visible;
      }




    } */
