body {
    color: #FFF;
    background-color: #23262e;
}

* {
    font-family: 'Poppins';
}

.navbar.second {
    justify-content: flex-end;
    background-color: #2a378f;
}

.log-in {
	font-size: 14px;
	color: white;
	background-color: #7289da;
	width: 80px;
	height: 40px;
	border-radius: 5px;
	border: None;
}

.log-in:hover {
	cursor: pointer;
}

.dashboard {
	font-size: 14px;
	color: white;
	background-color: #7289da;
	padding: 0 2em;
	height: 40px;
	border-radius: 5px;
	border: 0.15rem solid #7b86cb;
}

.dashboard i {
    margin-right: 10px;
}

.log-out {
	font-size: 14px;
	color: #ff7979;
	background-color: transparent;
	padding: 0 1em;
	height: 40px;
	border-radius: 5px;
	border: None;
}

.log-out:hover {
	cursor: pointer;
}

.dashboard:hover {
	cursor: pointer;
}

.response-block {
	margin: 15px;
	padding: .5em;
	word-wrap: break-word;
	width: 90%;
	background-color: #2f3136;
	border: 1px solid #202225;
	color: #b9bbbe;
}

h2 {
    font-size:clamp(20px, 2vw, 40px);
}

.container.padded.flex {
    align-content: center;
}

.textSlogan {
    max-width: unset;
    text-align: center;
}

.btn.bordered {
    background-color: transparent;
    font-size: clamp(20px, 1.3vw, 30px);
    margin-top: 30px;
    cursor: pointer;
    font-family: 'Poppins';
    font-weight: 300;
    border-radius: 0.3rem;
    border: 0.15rem solid #2F44CB;
}

.container.black {
    background-color: #1e2234;
}

.container.flex {
    margin: 0;
}

.container.flex.start {
    align-items: flex-start;
    justify-items: flex-start;
    align-content: flex-start;
    min-height: unset;
    gap: 2em;
}

.container.sidebar {
    flex: 0 1 clamp(100px, 25%, 400px);
    background: #1a1c26;
        min-height: 80vh;
}

.container.content {
    flex: 1 1 clamp(400px, 75%, 700px);
    display: inline-flex;
    padding: 0 3em;
    gap: 3em;
    
}

.container.flex.stretch {
    align-items: stretch;
}

.card {
    flex: 1;
    max-height: unset;
    display: inline-block;
    margin: 0;
    padding: 1.5em;
    border-radius: 2rem;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 40%);
    text-align: center;
    background-color:#11162a;
}

.card a {
    color: #FFF;
    padding: 0.5em;
    margin-top: 1em;
    width: 100%;
    display: inline-block;
    border-radius: 0.4rem;
    background: #1e2234;
}

.card .manage {
    background: #2f44cb;
}

.card img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 1em;
    border-radius: 2rem;
}

.dropdown {
    display: block;
}

.serverSelector {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 2em 2em 1em 2em;
    padding: 1em 2em;
    height: 75px;
    border-radius: 0.4rem;
    overflow: hidden;
    color: #FFF;
    background-color: #14161e;
    box-shadow: 0 0 2px 4px rgb(47 68 203 / 25%);
}

.serverSelector .container.flex {
    height: 100%;
    align-content: center;
}

.serverSelector img {
    max-height: 100%;
    border-radius: 50%;
}

.serverSelector h3 {
    padding-left: 1em;
    max-width: 70%;
}

.serverSelector i {
    margin-left: auto;
    margin-right: 1em;
    align-self: center;
}

.navigation {
    margin: 2em;
}

.navigation .item {
    display: block;
    color: #FFF;
    font-weight: 500;
    margin: 0.7em 1em;
}

.dropdown > div:hover {
    cursor: pointer;
}

.dropdown.dropdownItem:hover .dropdown-content {
    display: none;
}

.dropdown.dropdownItem:hover .dropdown-content.show, .show {
    display: block;
    position: relative;
}

.dropdownItem .dropdown-content > div {
    background: #14161e;
    margin: 0;
    padding: 1em 2em;
    width: calc(100% - 4em);
    border-radius: 0.4rem;
}

.settings {
    flex: 1;
    text-align: left;
}

.settings h3 {
    color: #d1d1d1;
    margin-bottom: .7em;
}

.settings label {
    display: inline-block;
    margin-bottom: 0.3em;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .9rem + 2px);
    padding: .45rem .9rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #adb5bd;
    background-color: #3b4452;
    background-clip: padding-box;
    border: 1px solid #434e5e;
    border-radius: .2rem;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}