:root {
    --primary-900: rgb(23, 23, 22);
    --primary-800: rgb(54, 54, 52);
    --primary-700: rgb(220, 150, 11);
    --primary-500: rgb(255, 143, 22);
    --primary-400: rgb(250, 199, 88);
    --primary-300: rgb(255, 215, 129);
    --primary-100: rgb(255, 246, 237);
    --primary-50: rgb(255, 251, 250);

    --secondary-500: rgb(13, 83, 154);

    --tertiary-200: rgb(97, 255, 197);
    --tertiary-300: rgb(12, 248, 162);
    --tertiary-400: rgb(4, 212, 136);
    --tertiary-600: rgb(11, 92, 33);
    --tertiary-800: rgb(23, 23, 30);
    
    font-family: monospace;
    color: var(--tertiary-300);
    background-color: transparent;
    min-height: 100vh;
}

::-moz-selection { /* Code for Firefox */
  color: var(--secondary-500);
  background: var(--tertiary-300);
}

::selection {
  /* color: var(--primary-50); */
  /* background: var(--secondary-500); */
  color: var(--secondary-500);
  background: var(--tertiary-300);
}

body {
    margin: 0;
    padding: 20px;
    position: relative;
    background-color: var(--primary-400);
    background-image: 
        url('wood-texture-light.jpg'), 
        repeating-conic-gradient(#fff 0% 25%, var(--primary-800) 0% 50%);
	background-size: 600px, 200px 200px;
    background-repeat: repeat;
    /* background-blend-mode:lighten; */
    background-blend-mode:multiply;

    animation: animate 30s linear infinite;
}

.content {
    text-align: center;
    margin: auto;

    background-color: var(--tertiary-800);
    border-radius: 6px;
    border: solid var(--primary-100) 6px;

    transition: 200ms;
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) {
    .content {
        max-width: 800px;
        padding: 20px 20px 60px;
    }

    .header {
        font-size: 26px;
    }

    .text {
        font-size: 20px;
    }
}

@media (min-width: 1100px) {
    .content {
        max-width: 800px;
        padding: 50px 80px 80px;
        
    }
}

.header, .text {
    text-align: center;
    /* color: var(--tertiary-300); */
    color: var(--primary-100);
}

.header {
    font-size: 30px;
    line-height: 46px;
    font-weight: 900;
}

.text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 900;
}

div .header, div .text {
    text-shadow: var(--secondary-500) 1px 1px 10px;
}

.links {
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

#github, #email {
    margin: 20px 10px;
    background-color: transparent;
}

.address {
    color: var(--tertiary-300);
}

#github {
    text-decoration: none;
}

#github:hover, #email:hover {
    cursor: pointer;
    text-decoration: underline;
    color: var(--tertiary-300);
}

.btn-text {
    font-weight: 600;
    border: none;
}

#copy-status {
    color: var(--tertiary-300);
    text-align: center;
}

/* The switch - the box around the slider */
.switch {
    margin: 0 10px;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--primary-50);
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--tertiary-300);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--tertiary-300);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

#switch-text {
    position: absolute;

    line-height: 20px;
}

@keyframes animate {
    0% {
        background-position-x: 0;
        background-position-y: 0;
    }

    100% {
        background-position-x: 600px;
        background-position-y: 400px;
    }
}