
* {
    cursor: url("cursor.png"), default;
}

.Dark-Magician {
    /*
    border: 2px solid red;
    */
    position: fixed;   
    bottom: 20px;     
    left: 20px;

    max-width: 110px;
    max-height: 330px;
    margin: auto;

    z-index: 2500;
    overflow: hidden;
     user-select: none;
}


.Dark-Magician img {
    width: 100%;
    height: auto;
    display: block;
}

#win {
    position: absolute;
    
}

.Posts {
    /*
    border: 10px solid blue;
    */
    width: 650px;
    max-height: 800px;
    

    display: flex;
    flex-direction: column;

    text-align: center;
    justify-content: center;
    font-size: 1.5em;
    gap: 7%;

    position: absolute;
    
    z-index: 0;
    
}

.Notepad {
    width: 600px;
    height: 200px;
    

    display: flex;
    flex-direction: column;

    text-align:start;
    justify-content: start;
    font-size: 1.5em;
    gap: 7%;

    position: absolute;
    
    z-index: 0;
}

#textInput {
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    min-width: 100%;

    font-size: 1.5em;
    
    color: inherit;
}


.Posts-Desc {
    /*
    border: 10px solid blue;
    */
    
    max-width: 650px;
    max-height: 310px;
    

    display: flex;
    flex-direction: column;

    text-align: center;
    justify-content: center;
    font-size: 2em;
    gap: 15%;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    margin: auto;
    
    user-select: none;
}

.Background {
    position: fixed;   /* stick to screen */
    top: 0;
    left: 0;
    width: 100vw;      /* full viewport width */
    height: 100vh;     /* full viewport height */
    z-index: -2;       /* behind everything */
    overflow: hidden;  /* prevent scrollbars */
}

.Background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* THIS makes it fill nicely */
    display: block;
    /* Make image unselectable */
    pointer-events: none;
    user-select: none;
}

.bottomNavbar {
    position: absolute;   /* stick to screen */
    top: 57%;
    left: 0;
    width: 100vw;      /* full viewport width */
    height: 100vh;     /* full viewport height */
    z-index: -1;       /* behind everything */
    overflow: hidden;  /* prevent scrollbars */

}

.bottomNavbar img {
    
    object-position: center 100%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* THIS makes it fill nicely */
    display: block;
    /* Make image unselectable */
    pointer-events: none;
    user-select: none;
}


body {
    overflow-x: hidden;
}

.twitterButton {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 130vh;
    left: 65vw;
    
    user-select: none;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.twitterButton img {
    width: 100px;
    height: auto;
    cursor: pointer;
}

.youtubeButton{
    position: absolute;
    display: flex;
    justify-content: center;
    top: 130vh;
    left: 30vw;

    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.youtubeButton a {
    display: inline-block;
}

.youtubeButton img {
    width: 120px;
    height: auto;
    cursor: pointer;
}

.gmailButton {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 130vh;
    left: 50vw;
    
    animation: float 2s ease-in-out infinite;
    z-index: 2;
    user-select: none;
}

.gmailButton img {
    width: 85px;
    height: auto;
    cursor: pointer;
}

@keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }


.title-bar-image img{

    padding-top: var(--w7-w-space);
   
    height: 15px;
    width: auto;
}

.Bandicam-Watermark{
    position: fixed;   /* or fixed */
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-150%);

    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.Bandicam-Watermark img{
    position: absolute;   /* or fixed */
    width: 300%;
    height: auto;
}

.writeup-text {
    /* border: 10px solid blue; */

    position: absolute;
    max-width: 750px;
    justify-content: center;
    font-size: 1.3em;
    font-family: "Segoe UI","SegoeUI","Noto Sans",sans-serif;
    color: white;
        text-shadow:
            0 0 3px black,
            0 0 5px black;
    /*text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,
              -1px 1px 0 #000, 1px 1px 0 #000;
    -webkit-text-stroke: 1px black; */

    top: 10%;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 1;
    margin: auto;
}

.writeup-text img{
    max-width: 750px;
    max-height: auto;

    width: 100%;
    height: auto;
}

.chapter-table {
    position: absolute;
    width: 20%;
    top: 5%;

}

@media (max-width: 1300px) {
  .chapter-table {
    display: none;
  }
}

.code-block {
    background: #111;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 20px;
    color: #ddd;
    font-family: monospace;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.square-image {
  width: 500px !important;
  height: 500px !important;
  max-width: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto; /* centers horizontally */
}

/*test*/
#task-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 40px;
  border-top: solid 1px rgba(255, 255, 255, .5);
  -webkit-box-shadow: 0 -1px 0 0 #00506b;
  box-shadow: 0 -1px 0 0 #00506b;
  z-index: 1;
}
#task-bar > #blur-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(skytest.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  z-index: 2;
}
#task-bar > #blur-overlay:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.6) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.6) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#66000000', GradientType=1);
  content: '';
  z-index: 3;
}
#menu-button {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 10px;
  display: block;
  width: 32px;
  height: 32px;
  z-index: 3;
  background-image: url(https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fclipground.com%2Fimages%2Fwindows-start-button-png-3.png&f=1&nofb=1&ipt=a8a697950fb69fa49d64fb779fb43fb8d4ffc6e54b266f568b4c91fa6f7eb994);
  background-size: 100%;
}

#pined-items {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  display: block;
}

#pined-items > .pined-icon {
  position: relative;
  display: block;
  width: 60px;
  height: 40px;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center;
  border: solid 1px transparent;
  border-radius: 2px;
  z-index: 3;
}

#datetime {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 3;
  text-align: center;
  color: white;
  font-family: 'Times New Roman', Times, serif;
}

#datetime > span {
  display: block;
  margin: 0;
}