/* html * {
    border: 1px solid red;
} */

html {
    background: #3C3C3C;
    color: #d9d9d9;
    font-family: 'Lexend Deca', sans-serif;
    text-align: center;
    font-weight: 400;
}

h1 {
    font-size: 30px;
    margin: 1ch 10vw 1ch 10vw;
}

h2 {
    font-size: 20px;
    font-weight: 200;
    margin: 1ch 10vw 1ch 10vw;
}

h3 {
    font-size: 17px;
    font-weight: 400;
}

p {
    margin: 0.3em;
    font-weight: 200;
}

section {
    text-align: left;
    margin: 0.3em;
    font-weight: 200;
}

/*
Notes: general body positions in the center. Overrides are located in inline styling.
*/
body {
    width: 90%;
    min-height: 300px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.red-text {
    color: red;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.button {
    font-size: 15px;
    font-weight: 200;
    background-color: #444444;
    border: 1px solid black;
    border-radius: 4px;
    box-shadow: 0px 2px 2px 2px #303030;
    width: 11ch;
    min-height: 3ch;
    margin: 20px;
    padding: 5px;
}
.button:hover {
    border: 1px solid white;
}

.button-header {
    font-size: 15px;
    font-weight: 200;
    width: 11ch;
    min-height: 3ch;
    margin: 20px;
    padding: 5px;
}
.button-header:hover {
    color: rgb(255, 0, 0);
}

.contact-icon {
    margin-top: 2ch;
}

.contact-icon img {
    max-width: 40px;
    width: 20vw;
    filter: blur(1px);
    -webkit-filter: blur(1px);
}

.contact-icon img:hover {
    filter: blur(0px);
    -webkit-filter: blur(0px);
}

.projects a:hover {
    border: 1px solid white;
}

img {
    width: 100%;
}

.contact-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    width: 60%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

hr {
    width: 100%;
}

.text-list {
    font-weight: 200;
    text-align: left;
    margin: 10px;
    list-style-type: disc;
}
.text-list li {
    margin: 0.5em 0em 0.5em 0em;
    font-size: 0.8em;
}
.text-list span {
    font-weight: 400;
}

.projects {
    width: auto; /*Overriding width set in .button class*/
    min-height: auto; /*Overriding min-height set in .button class*/
    font-weight: 200;
    padding: 5px;
    background-color: #444444;
    border: 1px solid black;
    border-radius: 4px;
    box-shadow: 0px 2px 2px 2px #303030;
}

.project-desc {
    font-size: 15px;
}

@media screen and (min-width: 768px) {
    body {
        width: 60%;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
}
