/*@import 'reset.css';*/
@import 'normalize.css';
@import 'code.css';

* {
      box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    margin: 0 auto;
    word-wrap: break-word;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 800px;
}

h1, h2, h3, h4 {
    font-family: Courier, monospace;
    text-align: center;
    margin: 0.8em 0 0 0;
    font-weight: bolder;
    line-height: 1em;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 0px 0.07em 0.1em rgba(150, 150, 150, 0.75);
}

h1::before, h1::after {
    /*content: '\00223C';*/
}

h2 {
    font-size: 2rem;
    text-decoration: underline;
}

h3 {
    font-size: 1.7rem;
    font-style: italic;
}

h4 {
    font-size: 1.2rem;
    color: #888;
}

p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: #000;
    line-height: 1.3em;
    margin: 0.5em 0 0 0;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#attoweb {
  font-size: 10rem;
  font-size: calc();
  line-height: 1em;
  font-weight: bolder;
  font-family: Courier, monospace;
  color: #000;
  padding: 0;
  margin: 0;
  text-shadow: 0px 0.07em 0.1em rgba(150, 150, 150, 0.75);
  text-transform: lowercase;
  text-decoration: none;
}

#attoweb > a {
  text-decoration: none;
  color: #000;
}
#attoweb>a::before, #attoweb>a::after {
    content: '';
}
#attoweb>a:hover {
    outline: none;
}

header p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.3rem;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin: 1rem 0;
    padding: 0;
}

footer p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.2rem;
}

hr {
  background: black;
  height: 1px;
  width: 100%;
  margin: 15px 0;
  padding: 0;
  display: block;
}

em {
    font-family: Georgia, Times, serif;
}

ul, ol {
    font-family: Helvetica, Arial, sans-serif!important;
    font-size: 0.9em;
}

a {
    color: inherit;
}

a:hover {
    outline: 1px solid black;
}

.github-corner {
    padding: 0;
    margin: 0;
}

.github {
    padding: 0;
    margin: 0;
}
/*a::before {*/
/*    content: '\0026ad';*/
/*}*/
/*a::after {*/
/*    content: '\002197';*/
/*}*/

@media (max-width: 800px){
    main {
        max-width: 100%;
    }
    #attoweb {
        font-size: 6rem;
    }
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    h4 {
        font-size: 1.2rem;
        color: #888;
    }
    .github {
        width: 15%;
        height: 15%;
    }
}

@media (max-width: 480px){
    #attoweb {
        font-size: 4rem;
        font-size: 17vw;
    }
    .github {
        width: 10%;
        height: 10%;
    }
}