* {
  line-height: 1.5;
  box-sizing: border-box;
  font-family: sans-serif;
  margin: 0;
}

.nicer-text{
  font-size: .9rem;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}

.bigger-nice-text{
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}

.smaller-nice-text{
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}

main {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

#card-BG{
  background-image: url("./assets/Untitled.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  max-width: 100vw;
}

main > section {
  height: 100vh;
  display: flex;
  background-image: linear-gradient(#013a45, #91a5b2);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body{
  background: -webkit-linear-gradient(left, #023b46, #25b7c4);
  background: linear-gradient(to right, #023b46, #25b7c4);
  font-family: 'Roboto', sans-serif;
}

#face{
  width: 20%;
  height: auto;
  min-width: 200px;
  align-self: stretch;
  padding: 0;
  border: 5px solid black;
  order: 1;
  flex-shrink: 1;
}

.pretty-link{
  color: #fff;
  text-decoration: none;
}

p.text{
  align-self: center;
  order: 2;
  width: 60%;
}

.box-shadow-full {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start;
  max-height: 90vh;
  font-size: 2.6vmin;
  padding: 3rem 1.25rem;
  position: relative;
  border-radius: 15px;
  background-image: linear-gradient(to right, #3b7a8b, #a3b2b9); 
  z-index: 2;
  width: 80%;
  margin: auto;
  box-shadow: 10px 10px;
}

main > section:nth-child(odd) {
  background-image: linear-gradient(#91a5b2, #013a45);
}

main > section > div {
  margin: auto;
  text-align: center;
}

html,body {
  overflow: hidden;
}

/*
table stuff
*/

h1{
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}
table{
  width:100%;
  table-layout: fixed;
}
.tbl-content{
  overflow-x:auto;
  margin-top: 0px;
  border: 1px solid rgba(255,255,255,0.3);
}
th{
  padding: 20px 15px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}
td{
  padding: 15px;
  text-align: left;
  vertical-align:middle;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  border-bottom: solid 1px rgba(255,255,255,0.1);
}

/*
expandable list*/


.collapsible {
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-bottom: 8px;
  border-radius: 15px;
}

.active, .collapsible:hover {
  background-color: #74909c;
}

.collapsible:after {
  content: '\002B';
  color: #023b46;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  margin-bottom: 1%;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: .9rem;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}
