/* styles */
/* called by your view template */

/* You might want to try something fancier: */
/* less: http://lesscss.org/ */

* {
  box-sizing: border-box;
}

body {
  font-family: helvetica, arial, sans-serif;
  margin: 25px;
}

h1 {
  font-weight: bold;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
}

.bold {
  font-weight: bold;
}

p.center {
  text-align: center;
}

form {
  margin-bottom: 25px;
  padding: 15px;
  background-color: cyan;
  display: inline-block;
  width: 100%;
  max-width: 340px;
  border-radius: 3px;
}

input {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 3px;
  font-size: 16px;
}

button {
  font-size: 16px;
  border-radius: 3px;
  background-color: lightgrey;
  border: 1px solid grey;
  box-shadow: 2px 2px teal;
  cursor: pointer;
}

button:hover {
  background-color: yellow;
}

button:active {
  box-shadow: none;
}

li {
  margin: .5ex;
}

section.description li {
  width: 100%;
  display: block;
  color: black;
  background: white;
  font-size: 1em;
  border: none;
  font-weight: normal;
}

@media screen and (min-width: 700px) {
  li {
    border-right: 1em solid red;
    border-bottom: 1ex solid white;
    color: white;
    background: black;
    font-size: x-large;
    font-weight: bold;
    display: inline-block;
    padding: 1ex;
    width: 31%;
  }
  
  li.big {
    border: 1em solid white;
    color: white;
    background: green;
    font-size: xx-large;
    font-weight: bold;
    display: inline-block;
    padding: 1ex;
    width: 50%;
  }
}

@media screen and (max-width: 699px) and (min-width: 480px) {
  li {
    border-right: 1em solid red;
    border-bottom: 1ex solid white;
    color: white;
    background: black;
    font-size: x-large;
    font-weight: bold;
    display: inline-block;
    padding: 1ex;
    width: 50%;
  }
  
  li.big {
    border: 1em solid white;
    color: white;
    background: green;
    font-size: xx-large;
    font-weight: bold;
    display: inline-block;
    padding: 1ex;
    width: 80%;
  }
}

@media screen and (max-width: 479px) {
  li {
    border-right: 1em solid red;
    border-bottom: 1ex solid white;
    color: white;
    background: black;
    font-size: large;
    font-weight: bold;
    display: inline-block;
    padding: 1ex;
    width: 80%;
  }
  
  li.big {
    border: 1ex solid white;
    color: white;
    background: green;
    font-size: x-large;
    font-weight: bold;
    display: inline-block;
    padding: 1ex;
    width: 100%;
  }
  
  h1 {
    font-size: 36px;  
  }
}
  
li.skewed {
  transform: rotate(5deg);
}

li.typewriter {
  font-family: courier, monospace;
  background: white;
  color: black;
  text-decoration: underline;
  border: 1ex solid black;
  margin: 1ex;
  text-transform: uppercase;
}

footer {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid lightgrey;
}

footer > a {
  color: #BBBBBB;
}

.nicejob {
  text-decoration: line-through;
}

section#entryview {
  position: absolute;
  width: 75%;
  left: 10px;
  top: 10px;
}

section#entryview h1 {
  
}