/*
Theme Name: Smart CMS Template
Author: Shamith De Silva
Description: A simple theme for the Smart CMS. purpose of this theme is to enable and customise certain admin features, such as Menus, Permalinks...etc.
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
}

header nav {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

header nav a {
    font-size: 18px;
    color: black;
    line-height: 1;
}
header nav a:hover {
    color: #ED1D25;
}
main .comp-logo {
    width: 250px;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
