@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Roboto&display=swap');
*{
    margin:0;
    padding:0;
}

body{
    font-family: 'Roboto', sans-serif;
    /* background-color: hsl(0,0%,90%); */
    /* added from interior pages */
    width:100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header{
    background-color: white;
    width: 98vw;
    padding: 1vh 1vw;
    margin-bottom: 3vh;
    border-bottom: solid 1px hsl(0,0%,90%);
}

main{
    width:90vw;
    height:80vh;
    /* added from interior pages */
    /* background-color: pink; */
    display: grid;
    flex: 1 0 auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60%;
    align-self: center;
}

h1{
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: normal;
    font-size: 3rem;
    margin: 0; padding:0;
}

h1 a{
    color:black;
    text-decoration: none;
}



ol{
    list-style: none;
    margin-block-start: 0rem;
    margin-left: 0rem;
    
}
ul{
    margin-left: 1rem;
    list-style: none;
    margin-bottom: 1rem;
}
li{
    margin-left: 1rem;
}

.list{
    /* font-family: 'Libre Baskerville', serif; */
    font-size: 1rem;
    line-height: 1.5rem;
    font-style: italic;
    grid-column: 1/-1;
    justify-self: right;
    /* background-color: green; */

}

.listTitle{
    font-family: 'Libre Baskerville', serif;
    margin-left: 0;
    font-size: 1.5rem;
    line-height: 3rem;
}

li a, .spacer{
    color: black;
    text-decoration: none;
    font-style: normal;
    font-size: 1rem;
}


/* .spacer{

} */

.proposed{
    /* text-decoration: line-through; */
    cursor: not-allowed;
    opacity: 25%;
    pointer-events: none;
}


.control{
    grid-column: 1/-1;
    display: flex;
    flex-flow: row;
    justify-content: center;
}
.controller{
    margin: 1vw 0 ;
    padding: 2vw;
    /* border-radius: 1vw; */
    height: fit-content;
    border: solid 1px hsl(0,0%,90%);
    /* background-color: hsl(0,0%,95%); */
    color: hsl(0,0%,40%);
}

footer{
    background-color: white;
    width: 96vw;
    padding: 2vh 2vw;
    margin-top: 3vh;
    flex-shrink: 0;
    text-align: right;
    border-top: solid 1px hsl(0,0%,90%);
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color: hsl(0,0%,70%);
}

footer a{
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color: currentColor;
    text-decoration: none;
    font-size: small;
}

a:hover{
    color: rgb(255, 183, 0);
}