/* Copyright © Anitism (Francis Brandon van Balkom). All rights reserved. */

@import url('https://fonts.googleapis.com/css?family=Roboto');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Arial';
  margin: 0;
}

/* Bold text */
b {
  font-family: 'Arial';
}

/* Paragraph */
p {
  font-family: 'Roboto', sans-serif;
}

/* First letter of a paragraph */
p::first-letter {
  text-transform: uppercase;
}

/* H1 and H2 titles */
h1, h2 {
  color: #0038A8;
  text-transform: uppercase;
}

/* Links */
a {
  color: black;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* Hover links */
@media screen and (min-width: 1190px) {
  a:hover {
    color: #0038A8;
  }
}

/* Button, input and textarea removal of the blue highlight or square that appears when holding or tapping a link on mobile browsers */
button, input, textarea {
    -webkit-tap-highlight-color: transparent;
}

/* Keyframes logo */
@keyframes logo {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

/* Header */
.header {
  flex: 100%;
  background-color: #0038A8;
}

/* Header */
header {
  flex: 100%;
  background: #0038A8;
  width: auto;
  height: auto;
  margin: 0 auto;
}

/* Top navigation bar */
.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  margin-top: 0px;
  margin-bottom: 0px;
  background: linear-gradient(0deg, #333, #222 80%) no-repeat;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
@media screen and (min-width: 1190px) {
    border-bottom: 4px solid #FCD116;
  }
}

/* Navigation bar links */
.navigation a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change color on hover */
@media screen and (min-width: 1190px) {
  .navigation a:hover {
    color: #FCD116;
  }
}

/* Menu */
.menu {
  color: black;
}

/* Images */
.images {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/* Column container */
.container {  
  display: flex;
  flex-wrap: wrap;
}

/* Sidebar/left column */
.side {
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Sidebar/left column titles */
.side h2 {
  color: #0038A8;
}

/* Main column */
.main {
  flex: 70%;
  background-color: white;
  padding: 20px;
  margin-bottom:100px;
}

/* Main column titles */
.main h2 {
  color: #CE1126;
}

/* News */
.news {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
footer {
  position: fixed;
  width: 100%;
  left: 0px;
  right: 0px;
  bottom: 0px;
  text-align: center;
  background-image: url(http://anitism.com/images/footer.png);
  background-repeat: repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}

/* Collapsible */
.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.collapsible-content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
  text-align: center;
}

/* Responsive layout - when the screen is less than 1190px wide, make the two columns stack on top of each other instead of next to each other (example was 700px) */
@media screen and (max-width: 1190px) {
  .container, .navigation {   
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  }
}
