html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    background-color: #060606;
    font-family: 'Courier New', Courier, monospace;
    font-size: 17px;
    color: white;
    height: 100%;
}

header {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 45px;
    justify-content: center;
    align-items: center;
    color: #ff6600;
}

header h1 {
    font-family: 'Lora', serif;
}

h2 {
    text-align: center;
    color: #ff6600;
    font-family: 'Courier New', Courier, monospace;
}

#logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#logo {
    position: absolute;
    left: 0;
    top: 1%;
}

#welcome {
    height: auto;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vh;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    text-align: center;
    color: white;
}

#welcome h2 {
    color: white;
    font-size: 1.6em;
}

nav {
    text-align: center;
    max-width: 80vw;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

nav div {
    padding: 10px;
    min-width: 250px;
    margin: 10px;
    white-space: nowrap;
}

a {
    color: white;
    text-decoration: none;
}

nav div a {
    width: 20vw;
    min-width: 210px;
    display: block;
    font-family: Verdana;
    font-size: 20px;
    padding: 15px;
    border: solid 1px white;
}

nav div a:hover {
    background-color: #ff6600;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 3vw 0 3vw;
}

.fader {
    opacity: 0;
    transition: opacity 1.4s;
    /* transform: translate(0, 2vh); */
    transition: all 2.4s;
}

.fader.visible {
    opacity: 1;
    transform: translate(0, 0);
}

article>h2 {
    font-size: 45px;
}

#how, #what, #contact {
    padding-top: 2vh;
}

.column {
    overflow: auto;
    width: 44vw;
    min-width: 250px;
    padding-top: 2vh;
}

.images {
    margin-top: 5vh;
    text-align: center;
}

.image img {
    width: 90%;
}

.tech {
    overflow: auto;
    min-width: 200px;
    padding-bottom: 2vh;
    font-family: 'Courier New', Courier, monospace;
    font-size: 21px;
    font-weight: 600;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding-bottom: 15px;
    word-wrap: break-word;
}

#contact {
    width: 100%;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}

#contact p {
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact a {
    border: solid 1px transparent;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact a:hover {
    font-weight: bold;
    color: #ff6600;
    border: solid 1px white;
}

#how {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    font-size: 30px;
}

#how .row {
    justify-content: space-evenly;
}

footer {
    padding-top: 20px;
    text-align: right;
    color: white;
    font-size: 12px;
}

@media all and (max-width: 992px) {
    #logo {
        position: relative;
    }
    .row {
        justify-content: center;
    }
    .column {
        width: 80vw;
        min-width: 100px;
        text-align: center;
    }
    .image {
        width: 40vw;
        min-width: 50px;
    }
}

@media screen and (max-width: 620px) {
    #logo {
        width: 30vw;
        min-width: 100px;
    }
    header h1 {
        font-size: 17vw;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .images {
        display: none;
    }
}

/* ==================== SNOWY PART ==================== */

/* not visible by default */

#snowy-div {
    display: none;
}

.snowflake {
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #000;
}

@-webkit-keyframes snowflakes-fall {
    0% {
        top: -10%
    }
    100% {
        top: 100%
    }
}

@-webkit-keyframes snowflakes-shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px)
    }
}

@keyframes snowflakes-fall {
    0% {
        top: -10%
    }
    100% {
        top: 100%
    }
}

@keyframes snowflakes-shake {
    0%, 100% {
        transform: translateX(0)
    }
    50% {
        transform: translateX(80px)
    }
}

.snowflake {
    position: fixed;
    top: -10%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-animation-name: snowflakes-fall, snowflakes-shake;
    -webkit-animation-duration: 10s, 3s;
    -webkit-animation-timing-function: linear, ease-in-out;
    -webkit-animation-iteration-count: infinite, infinite;
    -webkit-animation-play-state: running, running;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running
}

.snowflake:nth-of-type(0) {
    left: 1%;
    -webkit-animation-delay: 0s, 0s;
    animation-delay: 0s, 0s
}

.snowflake:nth-of-type(1) {
    left: 10%;
    -webkit-animation-delay: 1s, 1s;
    animation-delay: 1s, 1s
}

.snowflake:nth-of-type(2) {
    left: 20%;
    -webkit-animation-delay: 6s, .5s;
    animation-delay: 6s, .5s
}

.snowflake:nth-of-type(3) {
    left: 30%;
    -webkit-animation-delay: 4s, 2s;
    animation-delay: 4s, 2s
}

.snowflake:nth-of-type(4) {
    left: 40%;
    -webkit-animation-delay: 2s, 2s;
    animation-delay: 2s, 2s
}

.snowflake:nth-of-type(5) {
    left: 50%;
    -webkit-animation-delay: 8s, 3s;
    animation-delay: 8s, 3s
}

.snowflake:nth-of-type(6) {
    left: 60%;
    -webkit-animation-delay: 6s, 2s;
    animation-delay: 6s, 2s
}

.snowflake:nth-of-type(7) {
    left: 70%;
    -webkit-animation-delay: 2.5s, 1s;
    animation-delay: 2.5s, 1s
}

.snowflake:nth-of-type(8) {
    left: 80%;
    -webkit-animation-delay: 1s, 0s;
    animation-delay: 1s, 0s
}

.snowflake:nth-of-type(9) {
    left: 90%;
    -webkit-animation-delay: 3s, 1.5s;
    animation-delay: 3s, 1.5s
}

.snowflake:nth-of-type(10) {
    left: 25%;
    -webkit-animation-delay: 2s, 0s;
    animation-delay: 2s, 0s
}

.snowflake:nth-of-type(11) {
    left: 65%;
    -webkit-animation-delay: 4s, 2.5s;
    animation-delay: 4s, 2.5s
}

/* ==================== END SNOWY PART ==================== */