
html, body{
    background-color: #2b2b2b;
    background-image: url(../images/lago.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
    color: white;
    min-height:100%;
    height:100%;
    font-family: 'Cabin Condensed', sans-serif;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 5em;
}

h1, h2 {
    text-align: center;
    margin: 0 10px;
}

h1::before, h2::before {
    content: '> ';
    color: transparent;
}

h1::after, h2::after {
    content: ' <';
    color: transparent;
}

h1:hover::before, h2:hover::before {
    content: '> ';
    color:burlywood;
}

h1:hover::after, h2:hover::after {
    content: ' <';
    color:burlywood;
}


h2 {
    font-size: 3em;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 0;
}

li {
    padding: 0 5px;
}

a:hover {
    color: burlywood;
}

a {
    color: white;
    text-decoration-line: none;
}