/*
* vncnt.css
* Copyright 2017-2019, Vincent von Schelm
* vncnt.eu
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 
* This file expects to inherit a ton of stuff from barebones.css
*/

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
* Note: The best way to structure the use of media queries is to create the queries
* near the relevant code. For example, if you wanted to change the styles for buttons
* on small devices, paste the mobile query code up in the buttons section and style it
* there.
*/
@import url('barebones.css');

h1.h3-like,
h2.h3-like {
  font-size: 3.0rem;
  line-height: 1.3;
  letter-spacing: -.1rem;
}

h1.h4-like,
h2.h4-like {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -.05rem;
  margin-bottom: .25rem;
  text-align: center;
}

.landingpage,
.error404 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
}

.error404 {
  text-transform: uppercase;
  text-align: center;
}

p.reset-margin {
  display: block;
  margin: auto;
  margin-bottom: 1rem;
  text-align: center;
}

.avatar {
  width: 25rem;
  max-width: 80%;
  box-sizing: border-box;
  display: block;
  margin: auto;
  align-self: center;
}

.autocenter {
  text-align: center;
}

.icons {
  bottom: 0;
}

.icons h2,
h3 {
  margin-bottom: 0;
}

.icon {
  text-rendering: geometricPrecision !important;
  text-decoration: none;
  border-bottom: none;
  position: relative;
  color: #555555;
}

/* Larger than mobile (default point when grid becomes active) */
@media (min-width: 600px) {

  h1.h3-like,
  h2.h3-like {
    font-size: 3.6rem;
  }

  h1.h4-like,
  h2.h4-like {
    font-size: 1.8rem;
    margin-bottom: .25rem;
    text-align: center;
  }

  .grid-container.fivetoseven {
    grid-template-columns: 5fr 7fr;
  }

  .item {
    align-self: center;
  }

  .landingpage,
  .error404 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    max-width: 75%;
  }

  .avatar {
    max-width: 200%;
    box-sizing: border-box;
    align-self: center;
  }

  .autocenter {
    text-align: left;
    padding: 0 0;
  }
}

/* Larger than phablet */
@media (min-width: 900px) {
  html {
    --base-font-size: 80%;
  }

  p.reset-margin {
    margin-bottom: 2rem;
    /*skeleton.css: 2.5rem*/
  }
}

/* Larger than tablet */
@media (min-width: 1200px) {}