/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html {
        background-image: url("resources/bg.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow: hidden;
        height: 100%
    }

    body {
      height: 100%
    }

.viewport {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
.url {
        display: flex;
        flex-direction: row;
        align-items: center;
        
        box-sizing: border-box;
        flex-wrap: nowrap;
    }
    
.url input {
        width: 100%;
    }

    .url .icon {
        padding: 0px 3px;
    }

.window {
        max-width: 800px;
        width: 90%;
        max-height: 90%;
        display: flex;
        flex-direction: column;
    }

    .window-body {
        overflow: auto;
        padding: 0 3px 5px;
        box-sizing: border-box;
        height: 100%;
        margin: 0px;
    }

    .title-bar-text {
        font-size: calc(8px + 0.4vw);
    }

    .window-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        box-sizing: border-box;
        padding: 10px;
        gap: 5px;
    }
    

    .current-page {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        flex-basis: 600px;
        flex-grow: 10;
        max-height: 330px;
        overflow: auto;
    }
    
    .left-column {
        display: flex;
        
        flex-basis: 200px;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        justify-content: flex-start;
    }

    .right-column {
        display: flex;
        flex-basis: 300px;
        flex-grow: 3;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
    }

          .header {
    height: 80px;
    background-image: url("/resources/header.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    display: flex;
    flex-direction: row;
    padding: 5px;
    box-sizing: border-box;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .header div {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 3px;
    
    flex-basis: auto;
    align-items: flex-start;
    justify-content: center;
  }

  .header h1,
  h2 {
    color: #FFFFFF;
    margin: 0px;
    
    text-shadow: 1px 1px 5px black;
  }

    .logo {
      width: 90px;
      height: 90px;
    }

    .logo img {
      height: 100%;
    }

    .sidebar {
            flex-grow: 1;
            
        }