@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* fonts */
.righteous-regular {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* base */
* {
    text-align: center;
    margin: 0;
    padding: 0;
}
:root{
    --orange: #d94f00;
    --charcoal: #1a1a1a;
    --cream: #f2e8d5;

}
h1 {
    font-family: "Righteous";
}
p {
    font-family: "Montserrat";
}
img {
    width: 200px;
}
body{
    background: var(--charcoal);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
main {
    width: 100%;
    max-width: 100%;
}

/* title */
.title {
    background: var(--charcoal);
    color: var(--orange);
    padding: 20px;
}

/* nav */
nav {
    background: var(--orange);
    text-decoration: none;
    font-family: "Montserrat";
    font-weight: 500;
    width: 100%;
    border-top: var(--charcoal) 2px solid;
    /* border-bottom: var(--charcoal)  2px solid; */
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style-type: none;
    margin: 0px auto;
}
nav a {
    padding: 15px;
    display: block;
    text-decoration: none;
    color: var(--cream);
}
nav a:hover{
    background: var(--charcoal);
    color: var(--cream);
}

/* map */
.homepage-map {
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    grid-template-rows: repeat(31, 1fr);
    width: 100%;
    height: 100vw;
    max-width: 100%;
}
.home-map {
/*Display stuff*/
    grid-column: 1/31;
    grid-row: 1/32;
/*Positioning stuff*/
    z-index: -1;
/*Box model stuff*/
    width: 100%;
    max-width: 100%;
    height: 100%;
/*Manipulations stuff*/
    filter: invert(90%);
/*Miscellaneous*/
    object-fit: cover;
}
.home-logo {
    grid-column: 1/31;
    grid-row: 1/32;
    width: 150px;
    border: var(--cream) solid 2px;
}
/* pins */
.pins {
    z-index: 1;
    max-width: 100vw;
}
.pins:hover {
    filter:invert(25%);
}
.pin1 { 
    /* rexburg housing */
    width: 100%;
    /* filter:invert(100%); */
    grid-column: 15/16;
    grid-row: 12/13;
}
.pin2 {
    /* on campus east of hart building */
    width: 100%;
    /* filter:invert(75%); */
    grid-column: 19/20;
    grid-row: 13/14;
}
.pin3 {
    /* next to the bank by little ceasers */
    width: 100%;
    /* filter:invert(100%); */
    grid-column: 18/19;
    grid-row: 9/10;
}
.pin4 {
    /* behind ross */
    width: 100%;
    /* filter:invert(25%); */
    grid-column: 22/23;
    grid-row: 1/2;
}

/* footer */
footer{
    background: var(--charcoal);
    color: var(--orange);
    padding: 20px;
    border-top: solid var(--orange) 2px;

}