* {
    box-sizing: border-box;
}

body {
    font-family: 'Minecraftia', sans-serif;
    min-height: 100vh;
    color: white;
    display: flex;
    background-color: #252c27;
    margin: 0;
}

.turtlewave {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    width: 100%;
    text-align: center;
}

.turtlewave a {
    text-decoration: none;
}

.logo {
    font-family: 'Minecraftia', sans-serif !important;
    width: 100%;
    text-align: center;
}

.amazingsidebarr {
    padding: 16px 0;
    background: #2f332f;
    flex-shrink: 0;
    border-right: 4px solid #000;
    width: 240px;
}

.amazingsidebarrtextt {
    border-bottom: 2px solid #219250;
    color: #219250;
    margin-bottom: 12px;
    display: flex;
    padding: 16px;
    padding-top: 0;
    gap: 5px;
    align-items: center;
    font-size: 14px;
}

.linksinamazingsidebarr {
    padding: 0;
    margin: 0;
    list-style: none;
}

.linksinamazingsidebarr li a {
    padding: 12px 16px;
    color: #e0e0e0;
    border-left: 10px solid transparent;
    align-items: center;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    gap: 10px;
}

.linksinamazingsidebarr li a:hover {
    color: #219250;
    border-left: 10px solid #219250;
    transform: perspective(300px) rotate3d(1, 0, 0, 10deg);
    transform-origin: right center;
}

.linksinamazingsidebarr li a.active {
    color: #fff;
    background: #3d423d;
    border-left: 10px solid #006eff;
}

.coollittlefavicon {
    font-size: 14px;
}

.simplifiedinfo {
    margin: 20px auto;
    padding: 15px;
    border: 3px solid #f7f4f4;
    background: #1b201d;
    max-width: 700px;
    text-align: left;
}

.simplifiedinfo h3 {
    color: #55ff55;
    margin-top: 0;
}

.simplifiedinfo h4 {
    color: #ffff55;
}

.simplifiedinfo p {
    margin: 8px 0;
}

.generalgrid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 15px;
    justify-content: center;
}

.generalgrid * {
    width:250px;
    height:60px;
}

#resultaftersearch {
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content {
    padding: 40px;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}

@keyframes splashtextmovee {
    0% {
        transform: scale(1) rotate(10deg);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(10deg);
    }
}


.splashtextidea {
    animation-iteration-count: infinite;
    display: inline-block;
    color: yellow;
    transform: rotate(-10deg) scale(1);
    transform-origin: center;
    animation: splashtextmovee 1001ms infinite ease-in-out;
    margin-top: 50px;
}

input[type="text"],
button,
select,
textarea {
    height: 40px;
    font-size: 1.0em;
    font-family: 'Minecraftia', sans-serif;
    background-color: #3d423d;
    color: rgb(219, 217, 217);
    border: inset black 5px;
}

button:hover {
    cursor: pointer;
}

button:hover,
input[type="text"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border: inset #219250 5px;
}

input[type="file"]::file-selector-button,
input[type="file"]::-webkit-file-upload-button {
    height: 30px;
    margin-right: 10px;
    font-size: 1.0em;
    font-family: 'Minecraftia', sans-serif;
    background-color: #3d423d;
    color: rgb(219, 217, 217);
    border: inset black 5px;
    cursor: pointer;
}

input[type="file"]::file-selector-button:hover,
input[type="file"]::-webkit-file-upload-button:hover {
    outline: none;
    border: inset #219250 5px;
}

a {
    color:blue;
}

.atbottom {
    position: fixed;
    left: 0;
    bottom: 5px;
    width: 100%;
    text-align: center;
    z-index: 777;
}