* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
}

button {
  cursor: pointer;
}
button:focus {
  outline: 0;
}

a, a:hover, a:focus, a:active {
  color: inherit;
  text-decoration: none;
}

body {
  background-color: #F2F1F1;
  color: rgba(93, 98, 101, .87);
}

.header {
  background-color: #F2A948;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 0.5rem 1rem;
  height: 80px;
  margin-bottom: 12px;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  height: 100%;
  padding: 0 15px;
}

.header .container {
  height: 100%;
  display: flex;
  padding: 0;
}

.logo {
  height: 100%;
}
.logo img {
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.content {
  min-height: calc(100vh - 51px - 12px);
  padding-bottom: 15px;
}

.content .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 51px - 15px - 12px);
}

.title {
  font-size: 3rem;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.subtitle {
  font-size: 1.7rem;
  margin-bottom: 15px;
  text-align: center;
}

.btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 75px;
}

.btns .btns__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 18px;
  cursor: pointer;
  min-width: 300px;
  height: 140px;
  border-radius: 10px;
}

.btns .btns__btn:hover {
  -webkit-box-shadow: 0 2px 6px 1px rgba(209, 201, 189, .7);
  -moz-box-shadow: 0 2px 6px 1px rgba(209, 201, 189, .7);
  box-shadow: 0 2px 6px 1px rgba(209, 201, 189, .7);
}
.btns a img {
  width: 330px;
  height: 130px;
}
/*
.en {
  background-color: #cc0033;
}
.no {
  background-color: #f5a551;
}
.so {
  background-color: #8fbe46;
}
.ma {
  background-color: #66ccff;
}
.pl {
  background-color: #990099;
}
.se {
  background-color: #cfdb06;
}
*/
@media screen and (max-width: 800px){
  .title {
    font-size: 2.7rem;
  }

  .subtitle {
    font-size: 2rem;
  }

  .choose {
    font-size: 1.4rem;
  }

  .btns {
    flex-direction: column;
    margin-top: 12px;
  }

  .btns:last-of-type {
    margin-top: 12px;
  }

  .btns .btns__btn {
    margin-top: 12px;
  }
  .btns .btns__btn:first-of-type {
    margin-top: 0;
  }
}
