.instruct {
    margin-left: 20px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1em;
    background-color: rgb(228, 228, 228);
}

.code {
    font-family: 'Courier New', Courier, monospace;
    background-color: rgb(186, 186, 186);
    padding: 10px;
}
.button-link {
    display: inline-block;      
    padding: 10px 20px;         
    background-color: #3776AB;   
    color: white;                
    text-decoration: none;       
    border-radius: 5px;          
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.button-link:hover {
    background-color: #2c5d8a;   /* darker on hover */
}
footer {
    margin-top: auto; /* pushes footer to bottom */
    text-align: center;
    padding: 10px;
    color:grey
}