/*
COLORS NOT FINAL

This applies to all pages

Color Pallete:

Gradiant: #FFB833 (E5D298) #fdfdfe
Sunrise Orange: #f79205
Blue: #0d74b4
Light Blue: #61bae1

*/

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

/*************** General ***************/

body {
    background-color: #fdfdfe;
    margin: 20px;
}

main {
    background-color: #61bae1;
    padding: 30px;
    border-radius: 10px;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* color: #0d74b4; */
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

p {
    font-family: Roboto;
    background-color: #f79205;
    padding: 20px;
}

.logo {
    width: 150px;
    box-shadow: none;
}

img, p {
    box-shadow: 10px 10px #005EB8;
}


/*************** Navigation ***************/

header {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 100px;
}

nav ul {
    /* border-radius: 10px; */
    padding: 0px;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #f79205;

    border-style: solid;
    border-color: black;
    border-width: 2px;
}

nav ul li a div {
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
    display: flex; 
    justify-content: center;
}

nav ul li a div:hover {
    background-color: #61bae1;
    color: white;
}

nav ul li a{
    text-decoration: none;
    color: black;
}

nav ul li a div p {
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
}