* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
scroll-behavior: smooth;
}
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
background-color: #222831;
color: #FEEFEE;
font-family: 'Comfortaa', sans-serif;
background-image: -o-linear-gradient(#222831, #222831 50px, #121212 100px);
background-image: linear-gradient(#222831, #222831 50px, #121212 100px);
overflow-x: hidden;
}
nav {
position: sticky;
top: 0;
z-index: 1000;
}
code {
-webkit-user-select: all;
-moz-user-select: all;
user-select: all;
white-space: normal;
word-wrap: break-word;
overflow-wrap: break-word;
}
footer {
position: relative;
padding-top: 100px;
}
section {
padding-top: 100px;
padding-left: 50px;
padding-right: 50px;
}
.centered {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
margin-left: auto;
margin-right: auto;
}
.nav-bar {
background-color: #2E3440;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
border-bottom: 1px solid transparent;
background-image: -webkit-gradient(linear, left top, right top, from(#2E3440), to(#222831)), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(transparent));
background-image: -o-linear-gradient(left, #2E3440, #222831), -o-linear-gradient(top, rgba(0, 0, 0, 0.1), transparent);
background-image: linear-gradient(to right, #2E3440, #222831), linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
background-origin: border-box;
background-clip: content-box, border-box;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 25px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.nav-left {
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
padding-left: 50px;
}
.nav-right {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
padding-right: 75px;
}
.link-button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
color: white;
text-align: center;
text-decoration: none;
background-color: #007bff;
border-radius: 5px;
border: none;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.link-button:empty {
display: none;
}
.link-button:hover {
background-color: #0056b3;
transform: scale(1.05);
}
.link-button:active {
background-color: #003f7f;
transform: scale(0.95);
}
#status {
max-width: 60%;
word-wrap: break-word;
}
select {
padding-right: 12px;
padding-left: 12px;
padding-top: 12px;
padding-bottom: 12px;
font-size: 16px;
background-color: #f9f9f9;
color: #333;
outline: none;
cursor: pointer;
text-align: center;
text-align-last: center;
}
select:hover {
background-color: #f0f0f0;
}
select:focus {
border-color: #007bff;
}