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

body {
	background-color: papayawhip;
	font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header, footer{
	display: flex;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

footer{
	border-top: 1px solid #ccc;
    border-bottom: none;
    margin-top: 50px;
	position: fixed;
	bottom: 0px;
}

table {
	width: 900px;
}

table, th, td {
	border: 1px solid #000;
	border-collapse: collapse;
	border-color: green;
}

th, td {
	text-align: left;
	padding: 8px;
}
th {
	color: lightblue;
}

.navbar {
	display: flex;
	justify-content: center; 
	align-items: center;
	gap: 20px;
    padding: 10px 20px;
	width: 100%
	
    //padding: 1rem 10%;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

footer.navbar {
    border-bottom: none;
    border-top: 1px solid rgba(0,0,0,0.1);
	position: fixed;
    bottom: 0;
    width: 100%;
}    

.profile-pic {
	width: 150px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}


ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px;
	
}

li {

}

a {
    text-decoration: none;
    color: #0000ee;
    font-weight: 500;
    transition: 0.3s;
}

a {
    text-decoration: none;
    color: #0000ee;
    font-weight: 500;
    transition: 0.3s;
}

.content-section {
    padding: 100px 20px;
    text-align: center;
}

.intro-card {
    text-align: left;
    max-width: 600px;
}


.main-profile-pic {
    width: 150px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.bio p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.details-list {
    display: block;
}

.details-list li {
    margin-bottom: 8px;
    font-family: monospace; 
    font-size: 1.1rem;
}


/* Contact */

.contact-info-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background-color: rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.form-container {
    min-width: 50%;
    margin: 0 auto;
    padding: 20px;
    //background: white;
    border-radius: 8px;
    //box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.btn{
	display: flex;
	justify-content: space-between;
}

.submit-btn {
    background-color: #0047ab;
    color: white;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.reset-btn {
	background-color: #0047ab;
    color: white;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    //width: 100%;
    font-size: 16px;
}



.hobbies-container {
    max-width: 900px;
    margin-top: 0px;
	margin-bottom: 90px;
	margin-left: auto;
	margin-right: auto;
    padding: 20px;
    text-align: center; 
	
}

h2 {
    margin-bottom: 30px;
    color: #0047ab;
    font-family: 'Segoe UI', sans-serif;
}

/* Hobbies Page */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
	
}

.hobby-card {
    //background: #fff;
    padding: 10px;
    border-radius: 12px;
    //box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}


.hobby-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}