*,*::after, *::before {
    margin: 0;
    box-sizing: border-box;
}
body {
    align-items: center;
    font-family: "Inter", sans-serif;
    color: hsl(0, 0%, 100%);
    background-color:  hsl(0, 0%, 8%);
    min-height: 97vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;   
}
.container {
    width: 80%;
    max-width: 360px;
    border-radius: 12px;
    text-align: center;
    padding: 1.2em;
    margin: 0 auto;
    background: hsl(0, 0%, 12%);
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    object-fit: contain;
    width: 26%;
    height: 26%;
    border-radius: 100px;
    margin: 1em;
}

p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0.9em;
}
.job__title .location {
margin-bottom: 2em;
color:rgb(196 248 42);
}
.job__title h2, .location {
    font-weight: 700;
}

.handle {
    font-weight: 600;
    padding: 0.6em 0.1em;
    background: hsl(0, 0%, 20%);
    border-radius: 4px;
    margin: 0.7em 0;
}
.handle:focus,
.handle:hover {
    background-color:hsl(75, 94%, 57%);
    color:rgb(31 31 31);
    cursor: pointer;
}