:root {
    /**
   * colors
   */
    --royal-purple: hsl(275, 37%, 18%);
    --white: hsl(0, 0%, 100%);
    --white-translucent: hsla(0, 0%, 100%, .85);
    --grey: hsla(254, 17%, 32%);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

input, button {
  background: none;
  border: none;
  font: inherit;
}

button {
    cursor: pointer;
}

html {
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--white);
}

.header-purple {
  width: 100%;
  height: 65px;
  background: var(--royal-purple);
  box-shadow: 0 2px 25px hsla(0, 0%, 0%, 0.1);
  padding: 5px 0px 22px 0px;
  overflow: hidden;
  z-index: 1;
}

.header-purple-white {
    width: 100%;
    height: 65px;
    background: var(--royal-purple);
    box-shadow: 0 2px 25px hsla(0, 0%, 0%, 0.1);
    padding: 5px 0px 22px 0px;
    overflow: hidden;
    z-index: 1;
}

#main-background {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    margin: auto;
    background-position: 50% 50%;
    background-size: cover;
    width: 100%;
    height: 450px;
    background-image: linear-gradient(to bottom, rgba(48, 29, 63, 0.25) 0%, rgba(48, 29, 63, 0.25) 100%), url("../images/main-background-2.jpg");
    background-repeat: no-repeat, no-repeat;
}

#main-section {
    display:flex;
    flex-grow: 1;
    position: relative;
}

.sub-section {
    padding-top: 27px;
}

.sub-section-content {
    padding: 27px 0px;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    position: relative;
}

#main-content {
    height: 100%;
    width: 66%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

#name {
    font-size: 55px;
}

#catchphrase {
    font-size: 30px;
}

#content {
    padding: 0px 17%;
}

#bottom-section {
    height: 55px;
    background-color: var(--royal-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-text {
    color: var(--white);
}

.center-text-white {
    text-align: center;
    color: var(--white);
}

.center-text-grey {
    text-align: center;
    color: var(--grey);
}

.bold {
    font-weight: bold;
}

.sub-section-header {
    font-size: 18px;
}

.table-content {
    display: flex;
    flex-flow: row;
}

.half {
    width: 50%;
    display: flex;
    align-items: center;
}

.half img {
    width: 100%;
    height: 100%;
}

.half .container {
    padding: 25px;
}

.sub-section-item-header {
    margin: 5px 0px;
    font-weight: bold;
}

.image-padding {
    padding: 60px;
}

.brand-name {
    font-size: 24px;
}

.content-centered {
    align-items: center;
    display: flex;
    flex-flow: column;
}