@import url("../fonts.css");
@import url("../effects.css");

@media (min-width: 768px) {
  html {
    font-size: 32px;
  }
}

.container {
    width: 100%; /* Fill small screens completely */
    max-width: 1500px; /* Don't grow larger than this on big screens */
    margin: 0 auto; /* Keep it centered */
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-top: 40px;
    margin-bottom: 40px;
    background: repeating-conic-gradient(#0066FF 0 25%, #0054D3 0 50%) 50% / 100px 100px;
}

ul, p, a {
    line-height: 1;
    font-family: "Nintendo DS";
    margin: 0px;
}

code {
    color: white;
}

/* Links */
a {
    color: cyan;
    text-shadow: 0 0 10px #00FFFF;
    text-decoration: none;
}

a:hover {
    color: white;
    text-shadow: 0 0 10px #FFFFFF;
}

/* Lists */
ul {
    list-style-type: square;
    text-align: left;
}

li::marker {
    font-size: 20px;
}

/* Selection */
::selection {
    color: black;
    background: #63FFFF;
}

/* Site Quote */
.quote {
    font-size: 40px;
    color: white;
    font-family: "Highway Gothic";
    text-shadow: #003456 1px 0 5px, #001928 1px 0 10px;
    max-width: 1500px;
    margin: 10px 0px 20px 0px;
}

/* Site Logo */
.logo {
    image-rendering: optimizeSpeed;
    -webkit-filter: drop-shadow(5px 5px 5px #003456);
}

/* Site Header */
.header {
    margin-bottom: 40px;
}

    /* Site Header Buttons */
    .header a {
        color: white;
        background: none;
        font-family: "Helvetica Neue";
        text-shadow: #003456 1px 0 5px, #001928 1px 0 10px;
        font-size: 40px;
        text-decoration: none;
        transition: transform .2s ease;
        margin: 25px;
    }

    .header a:hover {
        background: none;
        color: cyan;
        transform: scale(1.1);
    }

/* Main Div */
.main {
    background: repeating-conic-gradient(#001B97 0 25%, #00167D 0 50%) 50% / 100px 100px;
    padding: 20px;
    border: solid;
    border-width: 3px;
    border-color: white;
    color: white;
    text-shadow: #003456 1px 0 5px, #001928 1px 0 10px;
}

    .main h1, h2, h3, h4, h5, h6 {
        margin: 10px 0px 10px 0px;
        font-family: "Helvetica Neue";
    }

/* Project Columns */
.column {
    float: left;
    width: 50%;
}

/* Project Rows */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Project Button */
.projectButton {
    width: 90%;
    border: 0;
    box-shadow: #003456 1px 0 5px, #001928 1px 0 10px;
}

button {
   border:none;
   background-color:transparent;
   outline:none;
}

html {
    overflow-y: scroll;
}