* {
  box-sizing: border-box;
}

body  {
  background-image: url('../images/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

#brandLogo {
    width: 300px;
}


.site {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-center {
    display: flex;
}
 
.content-inner {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;         
    text-align: center;
}

.main-title {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffffcc;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    font-family: 'Inter';
    -webkit-backdrop-filter: blur(12px);
}

.site-footer {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    padding: 0px;
}
    
.footer-inner {
    flex-direction: column;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: rgb(229, 229, 229);
    text-align: center;
    padding: 20px;

    font-size: 13px;

    .footer-text-bold {
        
        padding-bottom: 10px;
        font-weight: bold;
    }
}

