* {
    scroll-behavior: smooth;
}

body {
    background:linear-gradient(45deg, #dd4814, #77216f, #5e2750, #2c001e); 
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    font-family: 'Ubuntu';

}

header {
    margin: 0px;
    padding: 0px;
    height: 5em;
}

h1 {
    padding-top: 10px;
    color: White;
    margin: 0;
    text-align: center;
    font-size: 45px;
}

.codeblock {
    padding-top: 0px;
    width: auto;
    max-width: 75vw;
    margin-right: auto;
    margin-left: auto;
}

p {
    margin: 0px;
    white-space: normal;
}

.Terminal__Toolbar {
    background: linear-gradient(#504b45 0%,#3c3b37 100%);
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    height: 25px;
    display: flex;
    align-items: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  
  .Toolbar__buttons {
    display: flex;
    align-items: center;
  }
  
  .Toolbar__button {
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 0;
    font-size: 7px;
    background: linear-gradient(#7d7871 0%, #595953 100%);
    text-shadow: 0px 1px 0px rgba(255,255,255,0.2);
    box-shadow: 0px 0px 1px 0px #41403A,0px 1px 1px 0px #474642;
    border: none;
    margin-right: 4px;
  
  }
  .Toolbar__button:hover {
    cursor: pointer;
  }
  .Toolbar__button--exit {
    background: #f25d2b;
    background: linear-gradient(#f37458 0%, #de4c12 100%);
    background-clip: padding-box;
  }
  .Toolbar__button:focus {
    outline: none;
  }
  
  .Toolbar__user {
    color: #d5d0ce;
    margin-left: 4px;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 1px;
  }