body {
    background-color: #1a1a1a;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


button {
    color: white;
    background-color: #3c3c3c;
    background: linear-gradient(152deg, #3c3c3c, #1c1c1c);
    border-radius: 15px;
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.logo {
    color: rgb(255, 255, 255);
}

.logo2 {
    color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    font-size: 8px;
}

.logo #l1,
.logo2 #l1 {
    color: lime;
    text-shadow: 0 0 5px lime;
}

.logo #l2,
.logo2 #l2 {
    color: skyblue;
    text-shadow: 0 0 5px skyblue;
}

input[type="text"] {
    color: white;
    border-radius: 15px;
    height: 40px;
    border: 2px solid black;
    background-color: #3c3c3c;
    background: linear-gradient(152deg, #3c3c3c, #1c1c1c);
}

#search {
    background-color: #3c3c3c;
    color: white;
    background: linear-gradient(152deg, #3c3c3c, #1c1c1c);
    border-radius: 15px;
    width: 30%;
    height: 50px;
    border: 2px solid black;
    transition: all 600ms;
    font-size: 1.2em;
    padding: 0;
    padding-left: 5px;
    padding-right: 5px;
    background-size: 200%;
    background-position: left;
}

#search:focus {
    color: lime;
    box-shadow: 0px 0px 10px lime;
    border: 3px solid lime;
    font-weight: bold;
    transform: rotate3d(1, 1, 0, 20deg);
    background-size: 100%;
    background-position: center;
}

.lowtext {
    position: fixed;
    bottom: 0;
}

#searcharea {
    display: flex;
    flex-direction: row;
    height: 50px !important;
    align-content: center;
    justify-content: center;
    width: 100%;
}

#dosearch {
    width: 5%;
    height: 50px !important;
    padding: 5px;
    transition: all 400ms;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid black;
}

#dosearch:hover {
    color: lime;
    box-shadow: 0px 0px 10px lime;
    border: 3px solid lime;
}

#dosearch:focus {
    transition: 200ms all;
    color: lime;
    box-shadow: 0px 0px 30px lime;
    border: 5px solid lime;
    transform: scale(0.8) rotate3d(1, 1, 0, 20deg);
    letter-spacing: 1px;
    text-indent: -1px;
}

#searcharea * {
    height: 50px;
    margin-right: 10px;
    margin-left: 10px;
}