#tutorials{
    display: flex;
    position: fixed;
    width: 100%;
    height: 90%;
    bottom: 0;
    justify-content: center;
    flex-flow: column;
    align-items: center;
}

#tutorials div{    
    background-color: white;    
    border: solid;
    border-width: 4pt;
    padding: 0.5ex;
    margin: 2ex;
    text-align: center;

    width: 40vw;
	max-width: 50vh;
    min-width: max-content;

    transition: padding 0.2s;
}
#tutorials div:hover{
    padding: 1ex;
}

#tutorials div h2{    
    margin-bottom: 0.5ex;
}