html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;
    background: #F2F2F2;
    color: #323232;
    background-size: 100%;
    margin-left:15%;
    margin-right:15%;
}
.container {
    max-width: 960px;
    margin: 40px auto;
    padding: 32px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}
section {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid lightgrey;
  }

  .section-title {
    font-weight: bold;
    font-size: 18px;
  }

 section:last-child {
  border-bottom: none;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

.job {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid lightgrey;
  }
  .job-title-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    color:rgb(238, 41, 41);
  }
  .job-company {
  font-weight: bold;
  line-height: 1.2;
  color:#323232;
}
.skills-container ul {
    margin-left: 20px;
    list-style-type: disc;
  }
  job-title-container {
    flex-direction: column;
  }

  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.align {
   display: block;
    font-weight: bold;
    margin-bottom: 0.5em;
    width:88%;
}

.label-normal {
    font-weight: normal;
}
input,
select {
    display: inline-block;
    font-size: 1em;
    margin-bottom: 1em;
    padding: 0.25em 0.5em;
    width: 100%;
}
[type="checkbox"]{
    margin-bottom: 0.5em;
    width: auto;
}
.no-media {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid lightgrey;
  }
.button {
    background-color: #0088cc;
    border: 1px solid #0088cc;
    border-radius: 1px;
    color: #ffffff;
    display: inline-block;
    font-size: 0.9375em;
    font-weight: normal;
    line-height: 1.2;
    margin-right: 0.3125em;
    margin-bottom: 0.3125em;
    padding: 0.5em 0.6875em;
    width: auto;
}


.button:active,
.button:focus,
.button:hover {
    background-color: #66b30f;
    border-color:none;
    color: #ffffff;
    text-decoration: none;
}

.button:active {
    box-shadow: inset 0 0.15625em 0.25em rgba(0, 0, 0, 0.15), 0 1px 0.15625em rgba(0, 0, 0, 0.05);
}
.error-message {
    color: red;
    font-style: italic;
    margin-bottom: 1em;
}


