*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
.gradient{
    background: rgb(75, 1, 1);
    background:  linear-gradient(27deg, rgb(75, 1, 1) 25%, rgba(170,0,0,1) 75%); /*linear-gradient(27deg, rgb(75, 1, 1) 0%, rgb(170,0,0) 25%, #c67700 75%, #D7942E 100%)*/;
	/*background-size: 400% 400%;
	animation: gradient 15s ease infinite;*/
	height: 100vh;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
}

body {
	background: linear-gradient(27deg, rgb(75, 1, 1) 25%, rgba(170,0,0,1) 75%);
	/*background-size: 400% 400%;
	animation: gradient 15s ease infinite;*/
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.nav-title{
    flex: 1;
    text-align: left;
    font-size: 30px;
    
}
.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
    border-radius: 10px;
}
.text-box-inner{
    width: 95%;
    color: #fff;
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.04);
    backdrop-filter: blur(20px);
    border-radius: 10px;
}
.text-box h1{
    font-size: 50px;
}
.text-box h2{
    margin: 0px 10px 0px;
    font-size: 30px;
}
.text-box p{
    margin: 5px 20px 5px;
    font-size: 16px;
}
.text-box li{
    margin: 5px 20px 5px;
    font-size: 16px;
}
.round-img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    float: right;
    top: 0;
    right: 200px;
}
nav .fa-times{
    display: none;
}
nav .fa-bars{
    display: none;
}

@media(max-width: 600px)  {
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }

}

.accordion{
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(0,0,0,0.1);
}

.accordion__label, .accordion__content{
    padding: 14px 20px;
}

.accordion__label{
    display: block;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background-color 0.1s;
    background-color: rgba(0, 0, 0, 0.1)

}

.accordion__label:hover{
    background-color: rgba(0, 0, 0, 0.2);
}

.accordion__content{
    background: rgba(0,0,0,0.06);
    line-height: 1.6;
    font-size: 0.85em;
    display: none;
}

.accordion__input{
    display: none;
}

.accordion__input:checked ~ .accordion__content{
    display: block;
}

th, td {
    border-style:solid;
    border-color: #a8acac;
}

.modules{
    float:right;
}
.btn-group {
    float:left;

}
code {
    background: #000;
    border-radius: 20px; /* zaokrąglone brzegi */
    border: solid #000 5px; /* poserzenie tła o 5px */
}

.center {
    display: flex;
    justify-content: center;
    color: #808080;
}
.invite-link {
    display: flex;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    
}
.invite-link:hover {
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

.social-link {
    display: flex;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    
}
.list{
    margin: 5px 20px 5px;
}
.redirecting{
    width: 90%;
    color: #fff;
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
}

.loader {
    margin: auto;
    border: 20px solid rgba(0, 0, 0, 0.2); /*inherit*/
    border-radius: 50%;
    border-top: 20px solid rgba(0, 0, 0, 0.5);
    width: 250px;
    height: 250px;
    animation: spinner 4s linear infinite;
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.optionButton {
    flex-basis: 100%;
    padding: 16px 20px;
    text-align: center;
    text-decoration: none;
    flex-grow: 1;
    justify-content: center;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    background: transparent;
    border-radius: 4px;
    color: white;
    border: 2px solid #f44336;
  }
  .optionButton:hover {
    background-color: #f44336;
    color: white;
  }
.buttonsInline{
    display: flex;
}