
@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');


* {
    font-family: 'Averia-Serif-Libre','san-serif';
    box-sizing: border-box;
    --background-color: #32343e;
    --primary-color:white;;
    --grey-blue:#404c54;
    --blue-enough:#446b6a;
    --almost-teal:#478d73;
    --sea-green:#5ba95d;
    
}
                             /* Stuff that applies everywhere */
::selection {
    color: var(--primary-color);
    background-color: var(--background-color);
}
    
                                /* Header */
header{
    background-color:var(--background-color);
    display:grid;
    grid-column:2/4 ;
    text-align:center;
    
}

header img{
    border-radius:100px;  /* this changes the shape of the image */
    padding: 15px; /*  gives spacing but shortens image */
    width:100px; /*changes width of image*/
}


.cayleigh img{
    float:left;
}

main {
    background-color: var(--primary-color);
    max-width: 800px; /*sets maximum size not sure what of though*/
    margin: 75px auto; /* controls how big the space between main, header and footter */
    text-align: left;
    
    display:grid;
    grid-template-columns: 2fr;
} 

main ul{
    list-style-type: none; 
    
}

                                        /* Navigation */
nav{
    background-color: var(--background-color);
    color: var(--primary-color);
    grid-column:span;
    text-align: center;
}

#menu-button{
    background-color:var(--background-color);
    font-size: 2rem;
    padding:.5rem;
}

#menu-button::before{ 
    /* supposed to use "&equiv;" in html to get the proper hamburger sign, but can't figure out how to utilize it */
    content: "☰";
}

#menu-button.open::before{
    content: 'x';
}

/*nav when it's closed  */
nav ul{ 
    list-style:none; /*what does this do?*/
    text-align: center;
    background-color: var(--sea-green);
    padding-inline-start: 0px; /*what does this do?*/
    display:none; 
    font-size:20px;
}

nav ul.open{
    display:flex;
    flex-direction:column;
    justify-content: space-around;

}

nav ul li{
    width:100%;
}

nav ul li a{
    display:block;
    text-decoration:none;
    color:white;
    padding: 1rem;
}

nav a{
    color: var(--primary-color);
    text-align: center;
    font-size: large;
    
}

nav ul li a:hover{
    color:var(--grey-blue);
    background-color: var(--sea-green);
    font-weight: bold;  /* makes the text appear thicker/bolded when hovered */
    
}

nav li{
    list-style-type: none; /*this makes the dots besides the link disapear */
}


                    /* Stuff After Navigator [Stuff within body] */
body {
    font-size:20px;
    color:var(--background-color);
    background-color:var(--primary-color)
}

img{
    border-radius:400px;  /* this changes the shape of the image */
    padding: 15px; /*  gives spacing but shortens image */
    width:300px; /*changes width of image*/

}

h1{
    color:var(--primary-color);

}


                                /* Section .card */
.card {
    font-size: 25px;
    border-style: solid; /*shows that we want a border with this style */
    border-width: 3.8px; /* width of the border*/
    border-radius: .4rem; /*seems to control the curve of the border*/
    /* width: 100%;  this made the cards stack besides each other*/
    padding: 35px;
    margin: 1rem;  /* this gave the cards spacing between each other */   

}

/*.card ul li{           * PLAY AROUND WITH THIS *
    font-weight:900px;/* change font weight of text *
}*/

.card a:hover{
    color:var(--primary-color); 

}


/* Colors in Color Schema */
.colors {
    width: 100%;
    min-width: 350px;
    margin: auto;
    text-align: center;
}
.colors th {
    background-color: #999;
}
.colors td{
    width: 25%;
    height: 3em;
}

.background-color{
    background-color: var(--background-color);
}
.primary-color{
    background-color:var(--primary-color);
}
.grey-blue{
    background-color:var(--grey-blue)
}
.blue-enough{
    background-color: var(--blue-enough);
}
.almost-teal{
    background-color:var(--almost-teal)
}
.sea-green{
    background-color:var(--sea-green)
}



/* Google Maps  */
.google-maps{
    position:relative;  
    padding-bottom: 50px;
    padding:1rem;
    width: 100%;
    /* height: 100%; */
    top:60%;
}

/* .google-maps iframe{
    height: 100%;
    width:100% ;
    left: 0%;  
    top: 0%;
    position: absolute;  /*this makes maps disappear when set to absolut  

}   */



/* Footer */
footer{
    background-color:var(--background-color);
    padding: 45px;
    color: var(--primary-color);
    text-align: center;
    
}
