body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.pageLinkHeader {
    display: flex;
    flex: 1;
    width: 100%;
    height: 100px;
    justify-content: center;
    gap: 40px;
}

.linkComponent {
    margin-top: 10px;
    color: #000000;
    text-decoration: none;
}

.mainBackgroundContainer {
    position: relative;
    width: 100vw;
    height: 700px;
    overflow: hidden;
}

.mainBackground {
    width: 100vw;
    height: 700px;
    object-fit: cover;
    display: block;
}

.headerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.skillKategorie {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.skillOverContainer {
    display: flex;
    width: 80%;
    align-content: space-between;
    gap: 80px;
}

.skillContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.skillTitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.skillText {
    display: block;
    text-align: left;
    font-size: 16px;
    color: #777;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.skillTable {
    width: 80%;
    margin: 40px auto;
    border-collapse: collapse;
    text-align: left;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.skillTable thead {
    background-color: #f5f5f5;
}

.skillTable th, .skillTable td {
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
}

.skillTable th {
    font-weight: 500;
}

.skillTable tbody tr:hover {
    background-color: #f0f0f0;
}