@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: 'Roboto', sans-serif;
}

/* MSU IARO Colors */
.bg-msu-blue {
    background-color: #1e88e5;
}

.text-msu-blue {
    color: #1e88e5;
}

.border-msu-blue {
    border-color: #1e88e5;
}

/* MSU Gold Colors */
.bg-msu-gold {
    background-color: #FFCB05;
}

.text-msu-gold {
    color: #FFCB05;
}

.hover\:text-msu-gold-light:hover {
    color: #FFD700;
}

.border-msu-gold {
    border-color: #FFCB05;
}

.btn-msu-blue {
    @apply bg-msu-blue text-white px-4 py-2 rounded-md hover:bg-blue-700 transition duration-300;
}

.header-container {
    max-height: 120px;
    overflow: hidden;
}

.footer-container {
    background-color: #1e88e5;
    color: white;
}