@import "header.css";
@import "grid.css";
body {
    background: #2e2e31;
    font-family: 'Open Sans', sans-serif;
}

main {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    grid-template-rows: auto;
    position: relative;
}

#banner>img {
    height: auto;
    width: 100%;
}

#banner {
    grid-column: 2/3;
    margin-bottom: 100px;
}

#banner>h1 {
    color: white;
    position: absolute;
    top: 0px;
    font-size: cal(1.5vh+10px);
}

.ir-arriba {
    display: none;
    padding: 20px;
    background: #0B2F3A;
    font-size: 20px;
    color: #FF8000;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}