<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*  Website Designed By: Evans Wood
    https://github.com/tntpizzatnt
    contacts.html */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&amp;display=swap');

h1 {
    font-family: 'Crimson Text', serif;;
}

:root {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: white;
    --main-bg: rgb(82, 128, 101);
    --border-color: rgb(0, 0, 0);
    --highlight-color: rgb(255, 255, 255);
}

body {
    margin: auto;
    width: 75vw;
    background: var(--main-bg);
}

h1 {
    font-size: 250%;
    text-align: center;
}

hr {
    color: var(--highlight-color);
}

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

a {
    text-decoration: none;
    /* no underline */
    padding: 1em;
    color: var(--highlight-color);
    transition: background-color 0.5s;
    border: 1px solid var(--border-color);
    border-radius: 33px;
}

a:hover {
    background-color: var(--border-color);
}

footer {
    display: flex;
    justify-content: space-around;
}

.container {
    display: flex;
    justify-content: space-around;
    background-color: rgb(55, 95, 71);
    border: 0vw solid;
    border-radius: 33px;
    padding: 2vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.nostyle {
    all:unset; 
    color: rgb(50, 156, 56);
}

.title {
    all:unset; 
}</pre></body></html>