
*, *::after, *::before { box-sizing: border-box; }

:root {
    --bodyborder: 25px;
}

body {
    color: var(--color);
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 25px;
}

h1 {
    color: var(--color);
    margin: 0;
    font-size: 48px;
    line-height: 1;
    text-align: center;
}

h1 a {
    color: var(--color);
    text-decoration: none;
}

h1 a:hover {
    color: var(--color);
    border-bottom: 3px solid var(--color);
}

h2 {
    font-size: 14px;
    line-height: 18px;
    color: var(--color);
    margin: 0;
}

h2 a {
    color: var(--color);
    text-decoration: none;
}

h2 a:hover {
    color: var(--color);
    border-bottom: 3px solid var(--color);
}

p {
    font-size: 25px;
    line-height: 32px;
    font-weight: bold;
    color: black;
}

p:last-child {
    margin-bottom: 0;
}

#home1 {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

#home2 {
    position: fixed;
    left: 50%;
    top: 20px;
    width: 100%;
    max-width: var(--max-width);
    transform: translateX(-50%);
    height: calc(100vh - var(--bodyborder));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--gutter);
}

.logo {
    position: fixed;
    top: 0;
    width: 9%;
    margin-top: 350px;

}

.center{
    justify-content: center;
}

#iedc {
    height: 100%;
    margin-top: 25px;
}

#icono {
    width: 100%;
    margin-top: 25px;
}

.arrow {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
}

.arrow img {
    transform: rotate(90deg);
    width: 55px;
}