* {
    color: #cccccc;
}

body{
    background-color: #262833;
}

div {
    //border-radius: 5px;
    border: none;
}
/*
button {
    border: 1px solid #777777;
    background-color: #131419;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    width: 180px;
    margin: 10px;
}
*/

button {
    appearance: none;
    background-color: rgba(0, 0, 0, 0.25);
    border: 3px solid transparent;
    border-radius: 10px;
    box-sizing: border-box;
    color: #cccccc;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    width: 200px;
    padding: 7px;
    outline: none;
    margin: 5px 10px;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
}

button:hover {
    color: #ccc;
    background-color: #131419;
    box-shadow: rgba(0, 0, 0, 0.7) 8px 8px 15px;
    transform: translateY(-2px);
}

button:active {
    box-shadow: none;
    transform: translateY(0);
}

p {
    width: 90%;
    text-align: justify;
    left: 0;
    align-items: initial;
}

h3 {
    text-align: center;
    padding: 0px;
    margin: 0px;
    color:#ffffff;
}

h1 {
    text-align: center;
    color:#ffffff;
}

img {
    width: 90%;
    height: auto;
    border-radius: 5px;
    margin: 10px;
    border: 1px solid #777777;
}

.container {
    width: calc(100% - 100px);
    max-width: 730px;
    max-height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0%);
    overflow-y: auto;
}

.innerbox {
    width: 88%;
    max-width: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: transparent;
    padding: 0px;
    margin: 10px;
    border-top: 1px solid #777777;

}

.sidebyside {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: fllex-start;
    padding: 10px;
    background-color: #222222;
    flex-direction: row;
    border: none;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
    margin-right:  10px;
    margin-left: 10px;
}

.software-item {
    width: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border-top: 1px solid #777777;
    padding: 10px 10px 0;
    margin: 10px 10px 0;
}

::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #353545; 
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #555566; 
  border-radius: 5px;
  border: 1px solid #353545;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888899; 
}

code {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 7px;
    border-radius: 5px;
    margin: 0px;
    font-size: 12px;
    width: calc(90% - 14px);
    border: 1px solid #ffffff37;
}
