@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@500&display=swap');

body{
    background-color: rgb(225, 239, 248);
    font-family: 'Roboto', sans-serif;
    color: rgb(52, 52, 74);
    margin: 0;
}
/* Standard Styles */
h1{
    font-size: 2.5em;
    text-align: center;
    color: rgb(98, 98, 163);
}

h2{
    font-size: 2em;
    color: rgb(81, 81, 126);
}

h3{
    font-size: 1.2em;
}
p{
    font-size: 1.1em;
}

hr{
    border-radius: 3px;
    margin-top: 1em;
    border-bottom: 2px solid rgb(102, 102, 136);
}

pre{
    border-radius: 10px;
}

.main{
    width: 90%;
    max-width: 1000px;
    margin: 5vh auto;
    min-height: 80vh;
}
#body{
    
    background-color: white;
    padding: 30px;
    
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgb(171, 171, 171);
}
footer{
    background-color:  rgb(52, 52, 74);
    min-width: 15vh;
    color: rgb(247, 247, 247);
    text-align: center;
    line-height: 1.5em;
    padding-bottom: 2em;
    padding-top: 2em;
    font-size: 1.2em;
    box-shadow: inset 0px -3px 15px rgb(15, 15, 19);
}