/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

:root {
    --contrast: #222222;
    --contrast-2: #575760;
    --contrast-3: #b2b2be;
    --base: #f0f0f0;
    --base-2: #f7f8f9;
    --base-3: #c3cfd9;
    --accent: #1e73be;
}

body {
    min-height: 100vh;
}

body > div.site-footer {
    margin-top: auto;
}

a:hover {
    color: blue;
}

#hero {
    min-width: 100%;
    background-image: linear-gradient(var(--base-3), rgba(0, 0, 0, 0), var(--base-2));
    height: 100%;
    display: flex;
    justify-content: center;
}


#heroText {
    width: fit-content;
    height: fit-content;
    max-width: 75%;
}

#title {
    font-weight: bold;
}

.coolText {
    color: midnightblue;
}

#stuff {
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    background-color: hsl(187, 100%, 25%);;
}

button:focus {
    background-color: hsl(187, 100%, 25%);
}

Button:hover {
    background-color: hsl(187, 100%, 15%);;
}

button:active {
    background-color: midnightblue;
}
