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

:root {
    --background-color: #0e0e0e;
    --foreground-color: #222222;
    --light-foreground: #919191;
    --font-color: #d2d2d2;
}


body {
    color: var(--font-color); 
    font-family: 'Poppins', "sans-serif";
    background-color: var(--background-color);
}

img {
    max-width: 100%;
    max-height: 100%;
}

.home { 
    position: relative;
    margin: 30px 3%;
    padding: 0px 2%;
    i {
        color: var(--font-color);
    }
}

.home a#theHome{
    color: var(--background-color);
}

.jobs {
    display: flex;
    flex-direction: column;
    padding: 0% 2%;
    margin: 0% 3%;
    gap: 1rem;
}

.jobs .jobs-content {
    border-bottom: 1px solid var(--light-foreground);
    background-color: var(--foreground-color);
    border-radius: 15px;
}

.jobs-header {
    padding-top: 15px;
    position: relative;
} 

.jobs-header i {
    position: absolute;
    right: 10.5%;
    top: 50%;
}

.titles {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: var(--light-foreground);
}

.titles h1 {
    width: 25rem;
    text-align: center;
}


.answers {
    display: flex;
    width: 75%; 
    margin-bottom: 15px;
    justify-content: space-between; 
}

.answers .company,
.answers .position,
.answers .time {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.answers .company img {
    width: 60%;
    margin-left: 35%;
}

.answers .position,
.answers .time {
    font-size: 22px;
    font-weight: 600;
}


.jobs .jobs-content .jobs-body {
    display: none;
}

.jobs .jobs-content .jobs-body.open {
    display: flex;
}

.jobs-body {
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 85%;
    margin-left: 7.5%;
}

.manager {
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center; 
    width: 100%;
    margin-bottom: 25px;
}


h3 {
    color: var(--light-foreground);
    font-size: 25px;
    font-weight: 500;
    margin-right: 20px;
}

h4 {
    color: var(--font-color);
    font-size: 20px;
    font-weight: 600;
    margin: 0px 10px;
}

h5 {
    color: var(--font-color);
    font-size: 18px;
    font-weight: 500;
}

ul {
    margin-bottom: 25px;
}

ul li {
    margin: 15px 0px;
}