﻿/* logo.css */
.logo {
    display: block; /* Make it render as a block element */
    width: 25%; /* Fixed width (25% of original can be approximated) */
    height: 40px; /* Fixed height to maintain square */
    background-image: url('https://www.ntik8.com/icons/ntik8.png');
    background-size: contain; /* Scale image to fit container */
    background-repeat: no-repeat; /* Don’t tile */
    background-position: center; /* Center the image */
}
