/* Reset */
/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/

/* General Styles */
/*body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}*/

/* Navigation Bar*/
.navbar {
    background-color: #3080ac;
    padding: 1rem;
} 

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
}

.nav-links {
    list-style-type: none;
}

.nav-links li {
    display: inline;
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Main Content */
.content-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-container {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    color: #333;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-box {
    background-color: #e6e9f7;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    font-size: 1.2rem;
    color: #3080ac;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style-type: disc;
    padding-left: 1rem;
}

.info-box ul li, .info-box p {
    margin-bottom: 0.5rem;
}

/*new line*/
        /* Basic reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Roboto Mono', monospace;
        }

        /* Center the main container 
        body {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background-color: #f4f7fa;
        }*/

        /* Container for the form */
        .app {
            width: 100%;
            max-width: 500px;
            padding: 2rem;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        /* Form row styling */
        .form-row {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            width: 100%;
        }

        /* Label styling */
        label {
            margin-bottom: 0.5rem;
            font-size: 1rem;
            color: #333;
        }

        /* Text input styling */
        input[type="text"] {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            background-color: #f9f9f9;
            transition: border-color 0.3s;
        }

        input[type="text"]:focus {
            border-color: #007bff;
            outline: none;
        }

        /* Button container */
        .buttons {
            display: flex;
            justify-content: space-around;
            margin-top: 1rem;
        }

        /* Button styling */
        button {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }

        #answerButton {
            background-color: #007bff;
            color: #fff;
        }

        #answerButton:hover {
            background-color: #0056b3;
        }

        #resetButton {
            background-color: #6c757d;
            color: #fff;
        }

        #resetButton:hover {
            background-color: #5a6268;
        }

        /* Loading animation */
        #loading {
            display: none;
            margin: 1rem auto;
        }

        /* Answer styling */
        #answer {
            margin-top: 2rem;
            font-size: 1.25rem;
            color: #333;
        }