/* Justice for Tuvix Stylesheet for improved desktop readability */

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    background-color: #f9f9f9;
    color: #2c2c2c;
    margin: 0;
    padding: 0;
}

header {
    background: #2a2a2a;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-size: 1.8em;
    letter-spacing: 1px;
}

.container {
    width: 70%;
    max-width: 1000px;
    margin: 40px auto;
    overflow: hidden;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #2a2a2a;
}

h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 0.9em;
}

/* Responsive Typography for Readability */
@media (min-width: 768px) {
    body {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 20px;
    }
    .container {
        padding: 40px;
    }
}

/* Improved button and link accessibility */
button, a {
    cursor: pointer;
}

button {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

/* Adding extra padding for sections */
section {
    margin-bottom: 40px;
}

#about p, #contact p {
    font-size: 1.1em;
} 

/* Contact Section Specifics */
#contact a {
    font-weight: bold;
} 
