html{
    font-size: 11pt;
}



body {
    background-image: url('mountains-1.jpg');
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    color: #b9af41;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
    font-family: sans-serif;
       padding: 0;
    margin: 0;
    
}

header {
    height: 30vh;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    text-shadow: 1px 1px #aa1414;
    font-weight: 100;
    border-radius: 28rem;
    margin: -0.8vh;
}



main {
    color: black;
    height: 50vh;
    display: grid;
    place-items: top;
    font-size: 1.2rem;
    padding-top: 0;
    margin-top: 0;
}

main ul{
    list-style-type: none;
    padding:0;
    text-align: center;
    line-height: 2rem;
    
}

main ul li {
    background-color: rgba(48, 20, 20, 0.71);
    padding: 2vh;
    margin: 2vh;
    border-radius: 10px;
}

main ul a {
    text-decoration: none;
    color:#ffe2c7;
    text-shadow: 2px 2px black
}

main ul a:hover {
    color: #97264b;
    text-shadow: none;
}

main ul li:hover {
    color: #a62bb3;
    background-color: beige;
    padding: 2vh;
}