/*Backbround Colour and font style*/
body
{
    font-family:Arial, Helvetica, sans-serif;
    background-color: antiquewhite;
    color: black;
    margin: 20px;
}

/*Styling Header*/
header
{
    background-color: rgb(129, 6, 6);
    text-align: center;
    padding: 10px;
    color: antiquewhite;
}


/*Styling Main Body*/
main
{
    background-color: antiquewhite;
    padding: 20px;
    margin: auto;
    max-width: 700px;
    border-radius: 10px;
}

/*Styling Footer*/
footer
{
    background-color: rgb(129, 6, 6);
    text-align: center;
    padding: 10px;
    color: antiquewhite;
}

/*Styling Button and Input*/
input, button
{
    font-size: 16px;
    margin: 5px;
    padding: 10px;
}

/*Styling Inline Form*/
.inline-form
{
    display: inline;
}

/*Styling Links*/
nav a
{
    text-decoration: underline;
    color: antiquewhite;
    margin-top: -20px;
    float:right;

}


/*Styling Error Messages*/
.error
{
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    color: rgb(210, 9, 9);
}

/*Styling Search Results*/
.uni-card
{
    padding: 1em;
    background-color: #FFFF;
    border: 1px solid #ddd;
    margin: 1em 0;
    border-radius: 6px;
}

/*Styling Button*/
button
{
    background-color: #820606;
    color: rgb(222, 222, 197);

}


/*Styling Button Hover*/
button:hover
{
    background-color: #ff0000;  
}