﻿/*Navigational bar*/
.navbutton {
    padding: 5px 30px;
    color: white;
    background-color: rgb(187, 19, 62); /*America red*/
    text-decoration: none;
}

.navbutton:hover {
    background-color: rgb(195, 26, 69);
}

#NavBar {
    text-align: center;
    background-color: rgb(187, 19, 62);
    margin: 0px;
    padding: 7px;
    position: sticky;
    top: 0;
}

/*ST logo*/
#STLogo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10vh;
    background-color: white;
    padding: 5px;
    border-radius: 50%;
}

/*Website name*/
#TitleBar {
    position: relative;
    text-align: center;
    padding: 20px 0;
    background-color: rgb(0, 40, 104);/*America Blue*/
    color: white;
    padding: 10px;
    margin: 0px;
}

#siteTitle{
    margin: 0;
    font-size: 2em;
}

/*Background image*/
body {
    background-image: url(images/BirkieStart2025.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: "Roboto", sans-serif;
}

/*Footer*/
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
    background-color: rgb(0, 40, 104); /*America Blue*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

footer a{
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer a:hover {
   color: rgb(187, 19, 62); /*America red*/;
}

/*Background for all data*/
#main{
    display: inline-block;
    background-color: white;
    margin-top: 5%;
    margin-bottom: 5%;
    border-radius: 3px;
}