// simonjuhl.net
// syndebuk.dk

@charset "UTF-8";
.example {
  display: -ms-grid;
  display: grid;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
  background: -webkit-linear-gradient(top, white, black);
  background: -o-linear-gradient(top, white, black);
  background: linear-gradient(to bottom, white, black); }

* {
  font-family: 'Rambla', sans-serif;
  margin: 0;
  padding: 0; }

body {
  width: 100%; }

p {
  color: #444432; }

footer {
  position: fixed;
  bottom: 8px;
  color: #eff5f5;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }
  footer p {
    padding: 24px; }
  footer p a {
    text-decoration: none;
    color: #eff5f5; }

button:focus {
  outline: none; }

button {
  font-family: 'Staatliches',sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  outline: none; }

main {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.main-button {
  background-color: #c4c48f;
  color: #444432;
  font-size: 2rem;
  padding: 24px;
  width: auto;
  -webkit-transition: 0.03s;
  -o-transition: 0.03s;
  transition: 0.03s;
  margin: 12px auto 12px auto; }

.sentence {
  padding-bottom: 64px;
  margin: auto;
  max-width: 88%;
  font-size: 1.3rem;
  quotes: "“" "„"; }

.main-button:hover {
  -webkit-box-shadow: inset 4px 4px 12px rgba(0, 0, 0, 0.5);
  box-shadow: inset 4px 4px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.3px; 
}



.flx-el {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: auto; }

.d-flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; 
}

// desktop
@media only screen and (min-width: 1024px) {
  
  button#skyldBtn:active {
    letter-spacing: -1px;
    -webkit-box-shadow: inset 4px 4px 24px rgba(0, 0, 0, 0.5);
  	box-shadow: inset 4px 4px 24px rgba(0, 0, 0, 0.5);
}
  
}

// mobile
@media only screen and (max-width: 480px) {
body {
  width: 100vw; 
  }
  
  
  
  .main-button:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    letter-spacing: 0px; }

  .sentence {
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
    margin:0;
    margin-left:20px;
  	margin-right:20px;
  }

  

  .main-button {
    width: 88% !important;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 12px; }

  .content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    margin-top: 50%;
    margin-left: 8px;
    margin-right: 8px; }

  main {
    margin: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }

  footer {
    bottom: 2px; }
    footer p {
      padding: 8px; } 

}

