/**
 * Copyright IBM Corporation 2018
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

body, a {
  font-family: IBM Plex Sans, sans-serif;
  color: black;
  text-decoration: none;
}

h1 {
  font-size: 2.5em;
}

.main-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
}

.top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-section, .button-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.bottom-section {
  margin-top: 10vh;
  background: linear-gradient(#00bbe6, #0086a5);
  border-radius: 15px;
  padding: 1% 0.2%;
  height: 30vh;
}

/*
    Styling for the buttons
*/
.button-section {
  margin: 2vh 0 3.5vh 0;
}

.button {
  width: 180px;
  height: 60px;
  margin: 0 10px;
  background-color: #1b2834;
  border-style: none;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 1px 1px 5px #5f5757;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button:focus, .button:active {
  outline:0;
}

.button:active {
  box-shadow: 0 0.5px 2px #5f5757;
  transform: translateY(1px);
}
/*
    Button image styling
*/
.slack-image, .kitura-image, .api-image {
  height: auto;
}
.slack-image {
  width: 25%;
  margin-right: -3%;
}

.kitura-image {
  margin-right: -4%;
  width: 30%;
}

.api-image {
  width: 15%;
  margin-right: 3%;
}

/*
    Styling for the GitHub project cards
*/
.project-card {
  background-color: white;
  width: 23%;
  height: 80%;
  border-radius: 15px;
  padding: 1em;
  box-shadow: 3px 3px 15px #606060;
  margin: 0 1%;
  text-align: center;
}

.project-card h3 {
  font-size: 1.4vw;
}

.project-card p {
  font-size: 1.1vw;
}

.github-image {
  width: 12%;
  height: auto;
}
