body {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background: rgb(24, 22, 18);
    color: rgb(255, 238, 193);
    font-family: Outfit, sans-serif;
    text-align: center;
    height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-size: 29px;
}

h2 {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

h3 {
    font-size: 20px;
    font-weight: 400;
}

p {
    font-size: 18px;
    font-weight: 300;
}

h2 i {
    font-size: 22px;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    transition: 0.5s, 0.15s filter;
}

.specialcontainer {
    width: fit-content;
    background-color: #3a3122;
    border: 4px solid #a38962;
    cursor: pointer;
    border-radius: 20px;
    padding: 8px 20px;
    margin: 8px 12px;
    display: flex;
    transition: 0.15s background-color;
    align-items: center;
}

.specialcontainer i {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.specialcontainer i h2 {
    font-style: normal;
    font-family: Outfit, sans-serif;
    margin-left: 16px;
}

.specialcontainer a {
    text-decoration: none !important;
}

.specialcontainer:hover {
    background-color: #5e5037;
}

i {
    margin: 5px;
    cursor: pointer;
    transition: 0.25s;
    font-size: 38px;
}

.specialcontainer2 div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: center;
    transition: 0.35s, 0.25s filter;
	grid-gap: 15px;
	margin-top: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    background-color: #f1f1f1;
    margin: 4px;
    border-radius: 10px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    outline: 1px solid black;
}

.dropdown p i {
    font-size: 22px;
    margin-left: 8px;
}

.dropdown:hover p i {
    transform: rotate(180deg);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.navbar p {
    margin: 0px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.navbar a {
    text-decoration: none;
}

.textanimated {
    white-space: nowrap;
    background: linear-gradient(180deg, #f19983, #d8b569, #f0f878, #d8b569, #f19983);
    background-size: auto 200%;
    filter: contrast(150%) drop-shadow(0px 0px 10px rgba(216, 155, 105, 0.27));
    -webkit-text-fill-color: transparent;
    background-clip: border-box;
    -webkit-background-clip: text;
    animation: textanimation 2s infinite linear;
}

.welcometext {
    margin-top: 35px;
    font-size: 55px;
    cursor: default;
}

@keyframes textanimation {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 0% 200%;
    }
}

.sitetransition {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    display: none;
    height: 100vh;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    scale: 1;
}

a {
    color: inherit;
    text-decoration: underline;
}

.dashboard {
    display: flex;
    height: calc(100vh - 152px);
}

.dashboardlist {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgb(12, 10, 16);
}

.dashboardlist h2 {
    user-select: none;
    padding: 8px 12px;
    border-bottom: 2px solid rgb(24, 22, 28);
    cursor: pointer;
}

.dashboardlist div:first-child h2 {
    border-top: 0px;
}

.tools {
    padding: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    flex: 1;
    background: rgb(16, 14, 20);
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
}

.dashboardlist h3 {
    user-select: none;
    padding: 6px;
    cursor: pointer;
}

.dashboardlist h3:last-child {
    border-bottom: 2px solid rgb(24, 22, 28);
}

h2 i {
    margin-right: 8px;
}

.nojstext {
    display: inline;
    color: black;
}

.customtweak {
    font-size: 0;
}

.tools div {
    height: calc(100vh - 20px * 2 - 152px);
    justify-content: center;
}

iframe {
    border: none;
    height: 100%;
}

.goldtext {
    color: #f1c183;
}

/*
	FurrySa1nt
*/

.buttons-div {
	display: flex;
	margin-top: 24px;
	white-space: nowrap;
}

footer {
	margin-bottom: 10px;
}

.install-br {
	display: none;
}

@media screen and (max-width: 900px) {
	.buttons-div {
		flex-direction: column;
		align-items: center;
	}
	.navbar {
		grid-gap: 5px !important;
	}
	.dropdown p i {
		font-size: 15px !important;
	}
	.install-br {
		display: block !important;
	}
}