@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #333;
  color: #222;
  overflow-x: hidden;
  margin: 0;
}

.container {
  background-color: #fafafa;
  transform-origin: top left;
  transition: transform 0.5s linear;
  width: 100vw;
  min-height: 100vh;
  padding: 50px;
}

.container.show-nav {
  transform: rotate(-20deg);
}

.circle-container {
  position: fixed;
  top: -100px;
  left: -100px;
}

.circle {
  background-color: #221142;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.5s linear;
}

.container.show-nav .circle {
  transform: rotate(-70deg);
}

.circle button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  background: transparent;
  border: 0;
  font-size: 26px;
  color: #fff;
}

.circle button:focus {
  outline: none;
}

.circle button#open {
  left: 60%;
}

.circle button#close {
  top: 60%;
  transform: rotate(90deg);
  transform-origin: top left;
}

.container.show-nav + nav li {
  transform: translateX(0);
  transition-delay: 0.3s;
}

nav {
  position: fixed;
  bottom: 40px;
  left: 0;
  z-index: 100;
}

nav ul {
  list-style-type: none;
  padding-left: 30px;
}

nav ul li {
  text-transform: uppercase;
  color: #fff;
  margin: 40px 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in;
}

nav ul li i {
  font-size: 20px;
  margin-right: 10px;
}

nav ul li + li {
  margin-left: 15px;
  transform: translateX(-150%);
}

nav ul li + li + li {
  margin-left: 30px;
  transform: translateX(-200%);
}

nav a{
  color: #fafafa;
  text-decoration: none;
  transition: all 0.5s;
}

nav a:hover {
  color: #2b61a3;
  font-weight: bold;
}

.content img {
  max-width: 100%;
}

.content {
  max-width: 1000px;
  margin: 50px auto;
  height: auto;
}

.content h1 {
  margin: 0;
}

.content small {
  color: #555;
  font-style: italic;
}

.content p {
  color: #333;
  line-height: 1.5;
}


#output{
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.ipaddress{
 list-style: none;
 display:inline-table;

}

.ipaddressli {
   padding: 10px;
   background-color: green;
   color: white;
   min-width: 10vw;
   max-width: 10vw;
   margin: 10px;
   text-align: center;
   border-radius: 9px;
   display:inline-table
  
}

.btn-lst{
  padding: 10px;
  background-color: rgb(34, 30, 75);
  color: white;
  min-width: 30vw;
  max-width: 10vw;
  margin: 2px;
  text-align: center;
  border-radius: 9px;
  display:inline-block;
}

.ipa{
  margin:4px;
  padding: 4px;
  border-radius: 8px;
  background-color: lightgoldenrodyellow;
  border-color: lightgoldenrodyellow;
}

.btn{
  border-radius: 8px;
  padding: 6px;
  min-width: 50px;
  border-color: transparent;
  margin-bottom: 4px;
}

.green{
  background-color: green;
  color: white;
}

.black{
  background-color: black;
  color: white
}


.tab {
  float: right;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 300px;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: rgb(34, 30, 75);
  color: white;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 0px solid #ccc;
  width: 70%;
  border-left: none;
 
  height: auto;
}



.green{
  background-color: green;
  color: white
}
.blue{
  background-color: blue;
  color: white;
}
.red{
  background-color: red;
  color: white;
}
.black{
  background-color: black;
  color: white;
}

#hide {
  display: none;
}

.btn-btn{
  text-decoration: none;
  display: list-item;
  list-style-type: none;
  padding: 8px;
  background-color: rgb(34, 30, 75);
  color: white;
}

code { background-color: #eee; }

pre code {
  background-color: #eee;
  border: 1px solid #999;
  display: block;
  padding: 20px;
  overflow: hidden;
  text-align: left;
}

a {
  text-decoration: none;
}

.card{
  margin-top: 10px;
  box-shadow: 4px 4px 4px gray;
  border-color: white;
}

.image-solution{
   min-height: 40vh;
   max-height: 40vh;
   min-width: 40vh;
   max-width: 40vh;
}
footer{
  text-align: center;
  margin-top: 100px;
  background-color: rgb(34, 30, 75);
  color: white;
  padding: 10px;
}

.avatar{
  border-radius: 50%;
  box-shadow: 4px 4px 4px gray;

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-height: 412px) {
  .tabcontent{
    background-color: white;
    z-index: auto;
  }

}

