body {
    background-color: #1a1a1a; 
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center; 
    min-height: 100vh; 
    margin: 0;
    padding: 20px;
}
.container {
    
    background-color: #2d2d2d;
    padding: 40px;
    border-radius: 12px;
    
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    max-width: 750px;
    width: 100%;
}


h1 {
    
    color: #f1c40f; 
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 10px;
    margin-top: 0;
}


h2 {
    color: #f1c40f;
    margin-top: 30px;
}


.personalInfo ul {
    list-style-type: none; 
    padding: 0;
}

.personalInfo li {
    margin-bottom: 12px;
    font-size: 1.1em;
}


.personalInfo strong {
    color: #f1c40f; 
    font-weight: 600;
}


.personalInfo a {
    color: #f1c40f;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

.personalInfo a:hover {
    color: #f39c12; 
    border-bottom: 1px solid #f39c12;
}


.skillsTable {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #333333; 
    color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden; 
}


.skillsTable th {
    background-color: #f1c40f;
    color: #1a1a1a; 
    padding: 15px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px;
}


.skillsTable td {
    border-bottom: 1px solid #444444; 
    padding: 12px 15px;
}


.skillsTable tbody tr:nth-child(even) {
    background-color: #2a2a2a;
}


.skillsTable tbody tr:hover {
    background-color: #3d3d3d;
}


.interaction {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start; 
}


hr {
    border: 0;
    border-top: 1px solid #444444;
    margin: 30px 0;
}


input[type="text"] {
    background-color: #333333; 
    color: #e0e0e0; 
    border: 1px solid #444444; 
    padding: 12px 15px;
    border-radius: 6px;
    width: 100%;
    max-width: 400px; 
    box-sizing: border-box; 
    transition: border-color 0.3s, box-shadow 0.3s;
}


input[type="text"]:focus {
    outline: none; 
    border-color: #f1c40f; 
    box-shadow: 0 0 5px rgba(241, 196, 15, 0.3); 
}

button {
    background-color: #f1c40f;
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.1s;
}


button:hover {
    background-color: #f39c12; 
}


button:active {
    transform: translateY(1px);
}