@charset "UTF-8";
/* Global styles for the entire application */

:root {
    --primary-color: #FF8200; /* R=11, G=55, B=14 */
    --secondary-color: #2d312d; /* R=45, G=49, B=45 */
    --text-color: #ffffff; /* R=255, G=255, B=255 */
    --background-color: #252525; /* R=37, G=37, B=37 */
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Arimo', sans-serif;
    line-height: 1.8;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Header and Footer Styles */
 .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 75px;
	width: 75px;
    margin-left: 10px;
	
}

.title {
	display: flex;
    background-color: var(--secondary-color);
    color: var(--text-color);
	
}

.title > p {
    font-size: 1rem;
    padding-left: 10px;
    padding-right: 20px;
    padding-top: 5px;
    align-self: center; 
    margin-left: auto;
}

.title > h3 {
	align-self: center;
    padding-left: 15px;
    font-size: 24px;


}

@media (max-width: 696px) {
    .title > p {
        display: none;
    }
}

@media (max-width: 357px) {
    .title > h3 {
        font-size: 20px;
    }
}

footer {
    background-color: var(--background-color);
    padding: 10px 0;
    margin-top: 20px;
}

footer > p {
    color: var(--primary-color);
	text-align: center;
	font-size: 14px;
	
}

.footer-links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}   

.tiny{
    text-decoration: none;
    font-size: xx-small;
    margin-left: 10px;
    color: black;
}

.login-link {
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
