*,
*::before,
*::after {
box-sizing: border-box
}
html {
font-family: Arial, sans-serif
}
.container{
display: flex;
flex-direction: row;
justify-content: flex-start;
padding: 20px;
}
.nb-button.default {
display: inline-block;
padding: 10px 20px;
background-color: #fff;
color: #000;
border: none;
cursor: pointer;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
text-transform: uppercase;
border: 2px solid #000000;
transition: background-color 0.3s ease, transform 0.2s ease;
transition: box-shadow 0.2s ease, transform 0.1s ease
}
.nb-button.default:hover {
box-shadow: 3px 3px 0px #000000;
background-color: #aaa
}
.nb-button.default:focus {
outline-color: transparent
}
.nb-button.default.disabled {
background-color: #ccc;
cursor: not-allowed
}
.nb-button.orange {
display: inline-block;
padding: 10px 20px;
background-color: #ff5733;
color: #fff;
border: none;
cursor: pointer;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
text-transform: uppercase;
border: 2px solid #000000;
transition: background-color 0.3s ease, transform 0.2s ease;
transition: box-shadow 0.2s ease, transform 0.1s ease
}
.nb-button.orange:hover {
box-shadow: 3px 3px 0px #000000;
background-color: #d64b2b
}
.nb-button.orange:focus {
outline-color: transparent
}
.nb-button.orange.disabled {
background-color: #ccc;
cursor: not-allowed
}
.nb-button.blue {
display: inline-block;
padding: 10px 20px;
background-color: #0077b6;
color: #fff;
border: none;
cursor: pointer;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
text-transform: uppercase;
border: 2px solid #000000;
transition: background-color 0.3s ease, transform 0.2s ease;
transition: box-shadow 0.2s ease, transform 0.1s ease
}
.nb-button.blue:hover {
box-shadow: 3px 3px 0px #000000;
background-color: #005785
}
.nb-button.blue:focus {
outline-color: transparent
}
.nb-button.blue.disabled {
background-color: #ccc;
cursor: not-allowed
}
.nb-button.green {
display: inline-block;
padding: 10px 20px;
background-color: #40d39c;
color: #fff;
border: none;
cursor: pointer;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration