/* 
 Module 12 Assignment
 Taylor Jones
 4/14/2025
*/

@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Major+Mono+Display&family=Quicksand:wght@300..700&display=swap');

* {
    box-sizing: border-box;
    border-radius: 25px;
}

body{
    background: #28272f;
}

header {
    grid-area: top;
    text-align: center;
    border: 3px solid black;
    align-content: center;
    padding: 20px;
    background:  #332d37
}

h1, h2{
    font-family: "Bree Serif", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
}

h1{
    font-size: 50px;
}

h2{
    color: black;
}

header > article{
    max-width: 75%;
    margin: auto;
    border: 3px solid black;
    background: #a08fb3;
    color: black;
}

article > p{
    text-align: left;
    line-height: 30px;
}

.maincont {
    display: grid;
    grid-template:
        'left top top top'
        'left middle middle middle'
        'left bottom bottom bottom';
    grid-gap: 10px;
    padding: 20px;
}

main {
    grid-area: middle;
    display: flex;
    border: 3px solid black;
    background: #a08fb3;
}

nav {
    grid-area: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 3px solid black;
    background: #332d37;
    font-family: "Major Mono Display", monospace;
    font-weight: 400;
    font-style: normal;
}

.followme{
    position: sticky;
    top: 0;

}

nav > a{
    border: 3px solid black;
    margin: 20px;
    width: 120px;
    padding: 20px;
    text-decoration: none;
    text-align: center;
    background: #1d181e;
    color: white;
}

img{
    min-width: 375px;
    max-width: 100%;
    border: 3px solid black;
}

article{
    max-height: 100%;
    padding: 10px;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-style: normal;
}

footer {
    grid-area: bottom;
    text-align: center;
    padding: 10px;
    border: 3px solid black;
    background: #332d37;
    color: white;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-style: normal;
}

a:link {
    color: white
}

a:visited {
    color: white
}

footer > p{
    margin-bottom: 0;
}