/*!
 * Palindrome Checker Web App
 * Copyright (c) 2025 Tushar Kumar Sahu
 * Licensed under the Apache License 2.0
 * See LICENSE file for more information.
 * http://www.apache.org/licenses/LICENSE-2.0
 */

* {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
    line-height: 1.5;
}

body {
    background-color: rgb(9, 1, 56);
    color: #f3f3f3;
    text-align: center;
}

.main-content {
    width: 100%;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;    
}

.codeCampLogo {
    white-space:pre-wrap;
    width: 500px;
    background: url('palindrome.logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 80px;
    max-width: 100%;
}

.title {
    font-size: 2.5rem;
    margin-top: 10px;
}

.palindrome-container {
    width: 500px;
    color: #000000;
    max-width: 100%;
    background-color: #fefefe;
    padding: 20px;
    border-radius: 15px;
    box-shadow: -2px 10px #0303a0;
}

#text-input {
    height: 30px;
    width: 70%;
    font-size: 1.2rem;
    background-color: #fefefe;
    border: none;
    border-bottom: 1.5px solid #141313;
    text-align: center;
}

#text-input:focus {
    outline: none;
    border-bottom: 2px solid #0e60ca;
    background-color: #fefefe;
}

#check-btn {
    background-color: #af04be;
    height: 30px;
    width: 70px;
    font-size: 1rem;
    color: #fefefe;
    border-radius: 5px;
    margin: 8px;
}

#result {
    font-size: 1.2rem;
    width:auto;
    overflow-x: auto;
    white-space: pre-wrap;
}

.palindrome-defination {
    margin-top: 40px;
    width: 500px;
    max-width: 100%;
    background-color: #043f13;
    border-radius: 7px;
    padding: 10px;
    font-size: 1.3rem;

}
