:root {
    --padding: 1rem;
}

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

body {
    font-family: Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 120%;
}

h2 {
    font-size: 3rem;
    line-height: 130%;
}

h4 {
    font-size: 2rem;
}

.link_admin {
    color: white;
    text-decoration: none;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    display: flex;
    z-index: 10;
    width: 100%;
    color: white;
    justify-content: space-between;
}

header nav {
    padding: 0;
    margin: 0;
    display: flex;
}

header nav p {
    padding-left: 1rem;
}

header nav p:hover {
    text-decoration: underline;
    cursor: pointer;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 125px 100px;
}

section.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    color: white;
}

section.hero .opacity {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.5);
    z-index: -1;
}

section.hero .background-image {
    background-color: rgba(28, 28, 28, 0.8);
    background-image: url(../img/nuevo-fondo.jpeg);
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

section.hero h4 {
    padding: var(--padding);
}

section.hero .link_client {
    background-color: #FF7423;
    border-color: #FF7423;
    color: #fff;
    border-radius: 10px;
    padding: var(--padding);
    text-decoration: none;
}

section.work {
    background-color: rgb(240, 240, 240);
}

section.work h4 {
    text-align: center;
    padding: var(--padding);
}

section.work ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

section.work ul img {
    height: 350px;
}
