body {
    background-color: #141414;
    display: flex;
    margin: 0;
    width: 100%;
    height: 100vh;
}

.search_button {
    display: inline-block;
    background-color: mediumpurple;
    border: 0.08em solid #54399e;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: white;
    font-size: 1.5vw;
    padding: 0.5vw 1vw;
}

.search_button:hover {
    box-shadow: 0 10px 15px rgba(145, 92, 182, .4);
    box-shadow-blur: 100px;
    border-color: white;
}

.search_input {
    background-color: mediumpurple;
    border: 0.08em solid #54399e;
    border-radius: 25px;
    cursor: text;
    display: inline-block;
    color: white;
    transition: all 0.2s ease-in-out;
    font-size: 1.5vw;
    padding: 0.5vw;
}

.search_input:hover {
    box-shadow: 0 10px 15px rgba(145, 92, 182, .4);
    box-shadow-blur: 100px;
    border-color: white;
}

.output_icon {
    transition: all 0.2s ease-in-out;
    margin-top: 100px;
    width: 10vw;
    height: auto;
}

.output_icon:hover {
    box-shadow: 0 10px 15px rgba(145, 92, 182, .4);
    box-shadow-blur: 100px;
    border-color: white;
}

.output_text {
    color: white;
    margin: 0.5vh;
    font-weight: bold;
    font-family: Monospaced, Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 2vw;
}

.output_motd {
    display: inline-block;
    color: white;
    background-color: #252525;
    font-weight: bold;
    font-family: Monospaced, Menlo, Monaco, Consolas, "Courier New", monospace;
    margin-left: 20px;
    border: 2px solid #404040 ;
    border-radius: 5px;
    font-size: 1.5vw;
    padding: 0.5vw 1vw;
}

.output_container {
    display: inline-block;
    position: relative;
    color: white;
    background-color: #252525;
    margin: 50px;
    border: 2px solid #404040 ;
    border-radius: 10px;
    padding: 10px;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}

.search_header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
}

.logo {
    position: absolute;
    top: 10px;
    right: 10px;
}