@import url('https://fonts.googleapis.com/css?family=Open+Sans');
html {
  font-size: 16px;
  background-color: #f9f9f9;
  font-family: 'Open Sans', sans-serif;
}
body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
*,
:after,
:before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  margin: 0;
  padding: 0;
}

li,
ol,
ul {
  list-style: none;
}

a,
button,
path {
  color: unset;
  text-decoration: none;
  transition: all 0.25s ease;
  border: unset;
  cursor: pointer;
}
.pizza-roll {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  padding: 50px;
}
.pizza-roll img {
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  animation: roll 10s linear infinite;
  transition: all 0.3s ease-in-out;
}
.pizza-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 25px;
}
@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.title {
  font-size: 40px;
  text-align: center;
  color: #fff;
  margin-top: 50px;
  font-weight: 600;
}

.log-section {
  width: 100%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.log-item {
  flex: 1;
  min-width: 150px;
  max-width: 100%;
  padding: 5px;
  display: flex;
}
.log-card {
  width: 100%;
  min-height: 100%;
  border-radius: 10px;
  background-color: #2e2c2c;
  padding: 10px;
}
.log-title {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 10px;
  font-weight: 600;
  font-size: 20px;
  margin: 0;
}
.log-subtitle {
  width: 100%;
  text-align: left;
  color: #fff;
  padding: 5px;
  font-size: 18px;
  margin: 0;
}
.log-info-line {
  width: 100%;
  padding: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.log-info-item {
  flex: 1;
  min-width: 100px;
  max-width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}
.log-info-label {
  font-weight: 800;
  margin-right: 5px;
}
.page-info {
  width: 100%;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.limpar-logs {
  color: #ccc;
  text-decoration: none;
  outline: none;
  font-weight: 800;
}
.atualizacao {
  color: #ccc;
  margin-top: 5px;
}
.alert-error {
  width: 100%;
  padding: 10px;
  background-color: #be1919;
  border-radius: 10px;
  color: #fff;
}