body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff; 
}

header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}

.headerTitle {
    font-size: 2em;
    margin: 0;
    color: #01FF70;
}

.subtitle {
    font-size: 1.5em;
}

#pageContainer {
    text-align: center;
    min-height: 100vh; /* Minimum height of 100% of the viewport height */
    min-width: 100vw;  /* Minimum width of 100% of the viewport width */
    box-sizing: border-box; /* Include padding in the element's total width and height */
    background-color: #333;
}

#loginContainer {
    display: inline-block;
    text-align: left;
    background-color: #fff;
    color: black;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px #01FF70;
}

.loginInput {
    width: 100%;
}

#errorsGoHere {
    color: red;
}

#mainContainer {
    background-color: #333;
    color: #fff; 
    text-align: center;
    padding: 20px 0;
}

.loadedProfile {
    background-color: #333;
    color: #fff; 
    text-align: center;
    padding: 20px 0;
}

.skills-container {
    width: 100%;  
    justify-content: space-between; /* Distribute items evenly */
    align-items: center; /* Center items vertically within the container */
}

.technicalSkills,
.technologies {
    display: inline-block;
    min-height: 300px;
    width: 48%; 
    margin: 0; 
}

.technicalSkillsChart,
.technologiesChart {
    width: 100%;
    height: 100%;
}