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

body {
    font-family: system-ui;
    background: url("cool-background.png");
    background-size: cover;
    background-position: center top;   
    display: flex; 
    flex-direction: column; 
    min-height: 100vh;
}

.personalia {
    background-color: #fff;
    height: 155px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    padding: 0px;
}

.name {
    padding-bottom: 20px;
}

h2 {
    padding-bottom: 10px;
}

.photo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
}

.cv-list {
    position: relative;
    right: 0;
    padding: 0 20% 0 20%;
}

.img-wrapper {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  left: 20%;
}

.img-wrapper img {
    width: 100%;
    height: 160%;
    object-fit: cover;
    top: -5px;
    position: absolute;
}

.cv-item {
    padding: 12px;
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    border: solid #000 2px;
    box-shadow: 0px 1px 1px 1px #000;
}

.cv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 1rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: auto;
}

.company-details h3 {
    margin: 0;
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 600;
}

.company-details h4 {
    margin: 0.25rem 0;
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

.cv-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cv-date {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.cv-type {
    background-color: #b4e5ff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.page {
    color: #fff;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    padding-top: 10px;
}

li {
    text-align: center;
    width: 120px;
    float: left;
    margin-right: 5px;
    background-color: #b4e5ff;
    margin-top: 5px;
    border-radius: 40px;
    font-size: small;
}

.contact {
    background-color: #fff;
    margin-top: 50px;
    padding: 10px;
    font-size: 40px;
    flex: 1;
}

.contact a:link, .contact a:visited {
    color: #000;
}

.contact a:hover {
    color: #4b4b4b;
}