html,
body,
button {
    background-color: rgb(0, 5, 1);
    color: #f1f3f4;
    font-family: 'VT323', monospace;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

h1 {
    /* font-family: 'Major Mono Display', monospace; */
}

main {
    padding: 20px;
}

nav {
    background-image: url('/assets/images/background-nav-03.png');
    background-size: auto 100%;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px 2px 3px #00000047;
}

button {
    border: 0;
    border-radius: 7px;
    background: none;
    cursor: pointer;
}

.hidden {
    display: none;
}

.crt::before {
    background: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 40%,
        rgba(0, 0, 0, 0.05) 60%
    ); 
    background-size: 100% 5px;
    content: '';
    display: block;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
  

#wrapper {
    background-color: #e6e6e6;
    background-image: url('/assets/images/background-mac-03.png');
    border: 1px solid #b7b6b6;
    border-radius: 20px;
    box-shadow: 3px 4px 6px 3px 4px 6px #5e4f45c2;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    margin: 20px;
    min-height: 500px;
}

.wrapper-inner {
    background-color: #293331ab;
    background-image: linear-gradient(90deg, #ff00600d, #0034ff0f);
    border-radius: 20px;
    height: 100%;
    width: 100%;
}

#site-name {
    color: #333;
    font-family: 'VT323', monospace;
    font-size: 1em;
    font-weight: normal;
    margin: 0;
    text-shadow: 2px 2px 3px #eeeeee87;
}

.window__title {
    background-image: linear-gradient(90deg, lightgray, gray);
    border: 1px gray;
    border-style: solid none;
    width: 100%;
}

.window__body {
    padding: 10px;
}

.nav-wrapper {
    align-items: center;
    background-color: #5f707559;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
}

.nav-wrapper > ol {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 5px 5px;
}

.nav-wrapper > ol > li {
    margin-right: 15px;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.87);
}

.nav-btn {
    background: linear-gradient(145deg, #a5abad, #8b9092);
    border: none;
    box-shadow:  3px 3px 6px #777b7d,
    -3px -3px 6px #bdc5c7;
    color: #333;
    padding: 3px;
    text-shadow: 2px 2px 3px #eeeeee87;
}

.nav-btn:hover {
    background: none;
    box-shadow: none;
    text-shadow: none;
}

.nav-btn:active,
.nav-btn:focus {
    background: #9aa0a2;
    box-shadow: inset 3px 3px 6px #777b7d,
    inset -3px -3px 6px #bdc5c7;
    text-shadow: 2px 2px 3px #eeeeee87;
}

.icon-btn {
    align-items: center;
    border: 1px dashed transparent;
    display: flex;
    flex-direction: column;
    text-shadow: 1px 1px 1px black;
}

.icon-btn:active,
.icon-btn:focus {
    border-color:#f1f3f4;
    box-shadow: inset 3px 3px 6px #515253, inset -3px -3px 6px #545657, -3px -3px 6px #ffffff54;
}

.icon-btn:focus span {
    background-color: blue;
}

.icon-btn img {
    max-width: 75px;
    filter: drop-shadow(1px 1px 4px #2c2537cc);
}

/* icons placement */
#deck {
    position: absolute;
    left: 40%;
}

#folder-01 {
    position: absolute;
    top: 20%;
    left: 70%;
}

#folder-02 {
    position: absolute;
}

#terminal {
    position: absolute;
    left: 50%;
    top: 50%;
}

#notes {
    position: absolute;
    top: 50%;
}
/* icons placement end */

/* modal windows */
.windows {
    color:rgb(0, 5, 1);
}

[role="dialog"] {
    box-sizing: border-box;
    border: 1px solid #b7b6b6;
    background-color: #fff;
    border-radius: 20px;
}

@media screen and (min-width: 640px) {
    [role="dialog"] {
      position: absolute;
      top: 5%;
      left: 50vw; /* move to the middle of the screen (assumes relative parent is the body/viewport) */
      transform: translateX(
        -50%
      ); /* move backwards 50% of this element's width */
  
      min-width: calc(640px - (15px * 2)); /* == breakpoint - left+right margin */
      min-height: auto;
      box-shadow: 0 19px 38px rgb(0 0 0 / 12%), 0 15px 12px rgb(0 0 0 / 22%);
    }
  }
/* modal windows end */
