/*
  act: #FFE500
  green: #09BB00
  labour: #D82C20
  maori: #970000
  national: #7B8CFF
/*

/* @font-face for Gotham fonts*/
@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham/Gotham Regular.otf');
  font-weight: 300;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham/Gotham ItalicBold.otf');
  font-weight: italic;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham/Gotham Medium.otf');
  font-weight: 200;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham/Gotham Light.otf');
  font-weight: 100;
}

/* @font-face for Charter fonts*/
@font-face {
  font-family: 'Charter';
  src: url('assets/fonts/Charter/Charter-Roman-01.ttf');
  font-weight: 200;
}

@font-face {
  font-family: 'Charter';
  src: url('assets/fonts/Charter/Charter-Italic-02.ttf');
  font-weight: italic;
}

@font-face {
  font-family: 'Charter';
  src: url('assets/fonts/Charter/Charter-BoldItalic-03.ttf');
  font-weight: 300;
}

@font-face {
  font-family: 'Charter';
  src: url('assets/fonts/Charter/Charter-Bold-04.ttf');
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
    height: 100%;
    background: linear-gradient(90deg, #000000 50%, #FFFFFF 50%);
}

.logo {
  position: absolute;
  left: 24px;
  top: 12px;
  height: 64px;
}

.container {
  display: flex;
  width: 100%;
  height: 100%;
  align-content: center;
  justify-content: center;
  padding: 5px;
  flex-wrap: wrap;
}

.column {
  height: 100%;
  position: relative;
  text-align: center;
  flex-basis: 50%;
}

.header {
  margin-top: 20vh;
  font-size: 6vw;
  font-family: 'Gotham', serif;
  font-weight: 300;
  color: #FF432C;
}

.subheader {
  margin-top: -2vh;
  font-size: 5vw;
  font-family: 'Gotham', serif;
  font-weight: italic;
  color: #FF432C;
}

.SearchBar {
  outline: none;
  margin-top: 7vh;
  height: 10vh;
  width: 36vw;
  border-radius: 12px;
  border: 0px;
  font-family: 'Charter', serif;
  font-weight: italic;
  font-size: 32px;
  opacity: 1;
  padding-left: 20px;
  padding-right: 12px;
}

.COA {
  height: 80px;
  margin: 200px;
}

.mp-icon {
  height: 50px;
  width: 50px;
  border-radius: 100%;
}

.act-icon {
  border: solid 2px #FFE500;
}

.grn-icon {
  border: solid 2px #09BB00;
}

.lbr-icon {
  border: solid 2px #D82C20;
}

.mao-icon {
  border: solid 2px #970000;
}

.nat-icon {
  border: solid 2px #7B8CFF;
}
