body {
    background-color: #0c151b;
    font-family: "Poppins" sans-serif;
    color: #fff;
}

/* Header Styles */
header {
    background-color: #0c151b;
    color: #fff;
    padding: 20px 0;
}

.dividerheader {
    width: 100%;
    height: 20px;
    margin: 20px 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), #060b0e);
    box-shadow: 0 1px 3px rgba(20, 42, 53, 0.1);
}

.btn-header {
    display: inline-block;
    background-color: #0c151b;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.containercommands {
    width: 60%;
    margin: 0 auto;
    padding: 20px;
}

.box {
    background-color: #242222;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.box-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.box-description {
    font-size: 18px;
    margin-bottom: 20px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin: 20px 0;
}

.command {
    font-size: 20px;
    margin-bottom: 10px;
}

.command-description {
    margin-bottom: 20px;
}

/* Footer Styles */
.space {
    background-color: #0c151b;
    padding: 120px 120px;
}

footer {
    background-color: #0c151b;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
}

.containerfooter {
    background-color: #0f2329;
    padding: 20px 20px !important;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsive design */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    flex: 1; /* Allow sections to take equal space */
    margin: 10px; /* Add some margin for spacing */
}

.section.main {
    margin-top: 45px;
}

.section.center.logo-container {
    text-align: center;
    order: 0; /* Place at the top in flex layout */
    width: 100%;
}

.section.center {
    order: 1; /* Place in the middle */
}

.section.left, .section.right {
    order: 2; /* Place left and right sections below the logo */
    flex: 1; /* Allow sections to take equal space */
}


img.footer-logo {
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.section.left p {
    color: #f0f8ff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
}

.section.center p {
    color: #f0f8ff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
}

.section.right p {
    color: #f0f8ff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-heading {
    font-weight: bold;
    margin-top: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    border-bottom: none;
}

.footer-menu li a:hover {
    color: #fff;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-link {
    color: #585858;
    transition: color 0.3s;
    text-decoration: none;
    border-bottom: 1px solid #585858;
}

.footer-link:hover {
    color: #54bee4;
}

.section.center .footer-menu,
.section.left .footer-menu,
.section.right .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

 /* Stile per le schede */

.row-1 {
    display: flex;
    margin-bottom: 15px;
}

.row-2 {
    display: flex;
}

.tablinks {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: background-color 0.3s;
    position: relative;
    font-size: 20px;
    color: #b6b6b6;
}

.tablinks.active {
    background: linear-gradient(to top, rgba(29, 77, 128, 0.3), transparent);
    color: #fff; /* Colore del testo quando il bottone è attivo */
}

/* Linea sotto il pulsante attivo */
.tablinks.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to top, #54bee4, transparent);
}

/* Stile per i contenuti delle schede */
.tabcontent {
    display: none;
    padding: 20px;
    border-top: none;
}

.tabcontent.active {
    display: block;
}

.command-box {
    background-color: #11272e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

.command-box h3 {
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.command-box p {
    margin-bottom: 0;
    color: #999;
    font-family: 'Poppins', sans-serif;
}

.more {
    position: relative;
}

.more h3,
.more p {
  position: absolute; /* Posizionamento assoluto */
  top: 0; /* Posiziona l'elemento all'inizio del contenitore */
}

.more h3 {
    margin-top: 0; /* Rimuovi il margine superiore */
    margin-bottom: 10px; /* Riduci il margine inferiore per separare il titolo dalla descrizione */
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.more p {
    margin-top: 40px; /* Rimuovi il margine superiore */
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.command-box.active {
    background-color: #fff; /* Cambia il colore di sfondo quando il box è attivo */
    color: #000; /* Cambia il colore del testo quando il box è attivo */
    cursor: pointer; /* Mostra il cursore come puntatore quando il box è attivo */
}

.more-answer-box {
    background-color: #11272e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    margin-top: -30px;
    height: 93px;
}

.hidden {
    display: none;
}

.side-menu {
    display: none;
}

.dropdown {
    display: none;
}


.light {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: #0c1416;
    box-shadow: #192a2e 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.x1{
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2{
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3{
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4{
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5{
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6{
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7{
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8{
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9{
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

button:focus{
  outline: none;
}

@-webkit-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-moz-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-o-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}