@font-face {
    font-family: 'Salesforce Sans';
    src: url('/fonts/SALESFORCE SANS.woff2') format('woff2'),
            url('/fonts/SALESFORCE SANS.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Salesforce Sans Light';
    src: url('/fonts/SALESFORCE SANS LIGHT.woff2') format('woff2'),
            url('/fonts/SALESFORCE SANS LIGHT.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'ITC AVANT GARDE GOTHIC';
    src: url('/fonts/ITC AVANT GARDE GOTHIC LT DEMI REGULAR.woff') format('woff2'),
            url('/fonts/ITC AVANT GARDE GOTHIC LT DEMI REGULAR.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ITC AVANT GARDE PRO';
    src: url('/fonts/ITCAVANTGARDEPRO-BK.woff') format('woff2'),
            url('/fonts/ITCAVANTGARDEPRO-BK.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ITC AVANT GARDE PRO Bold';
    src: url('/fonts/ITCAvantGardePro-Bold.woff') format('woff2'),
            url('/fonts/ITCAvantGardePro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

html,
*,
*::before,
*::after {
  border: 0;
  box-sizing: border-box;
  font-size: 16px;
  margin: 0;
  outline: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Salesforce Sans', Arial, sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('sfbg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    min-height: 100vh;
}

a {
    color: #ffffff;
    cursor: pointer;
}
a:hover {
    color: #179cd7;
}

h1 {
    font-family: 'ITC AVANT GARDE PRO Bold', Arial, sans-serif;
    font-size: 2em;
    padding-top: 30px;
}

#subtext {
    font-size: 1em;
    margin: 1em;
}

#logo-container {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

#sflogo {
    width: 200px;
    height: auto;
}

#content {
    text-align: center;
    max-width: 80%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

video {
    max-width: 100%;
    height: auto;
}

#footer,
#footer a {
    color: #70bcdd;
    font-size: 0.9em;
    margin: 1em;
}

@media screen and (max-width: 768px) {
    body {
        background-image: url('sfbgm.png');
    }
    h1 {
        font-size: 1.6em;
        padding-top: 20px;
    }
    #logo-container {
        height: 120px;
    }    
    #sflogo {
        width: 120px;
    }
    #content {
        max-width: 90%;
    }
}