/************ Basic Resets ************/

:root {
    --blue: #557a95;
    --blue: #7395ae;
    --blue2: #659dbd;
    --blue: #5085a5;
    --blue3: #1b9ce5;
    --blue: #6cdaee;
    --blue: #2e9cca;
    --blue: #5ab9ea;
    --blue: #84ceeb;
    --blue: #a8d0e6;
    --blue: #8fc1e3;
    --blue: #d2fdff;
    --blue6: #3b8beb;
    --blue5: #90ccf4;
    --blue4: #5da2d5;
    --blue: #97aabd;
    --blue: #77a6f7;
    --blue1: #d6e9fee5;
    --blue: #d3e3fc;
    --blue: #86b3d1;
    --blue: #4d6d9a;

    --green: #5cdb95;
    --green3: #8ee4af;
    --green2: #afd275;
    --green1: #86c232;
    --green: #53900f;
    --green4: #15db95;
    --green: #479761;
    --green: #16ffbd;

    --yellow: #ffe400;
    --yellow: #faed26;
    --yellow: #fccd04;
    --yellow: #fbeec1;
    --yellow: #f8e9a1;
    --yellow: #d6ce15;
    --yellow: #f3d250;
    --yellow: #fce181;

    --cream: #edf5e1;
    --cream: #e7e3d4;
    --cream: #edeae5;

    --white: #feffff;
    --white: #f7f9fb;
    --white1: #fff;

    --pink: #f172a1;
    --pink: #e64398;
    --pink: #f78888;
    --pink: #c96567;
    --pink: #edb5bf;
    --pink: #cb2d6f;

    --orange: #f79e02;

    --rich-black: #061923;
    --firey-rose: #FF5964;
    --alice-blue: #EBF8FF;
    --jasmine: #FFE099;
    --tea-green: #C8D6AF;
    --tea-green-light: #F7FFEA;
    --english-violet: #48284A;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav ul,
nav ol {
    list-style-type: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:link {
    color: var(--blue4);
    font-weight: bold;
}

a:visited {
    color: var(--blue4);
}

/* a:hover {
    color: #2b6cb6;
    border-bottom: 2px solid #2b6cb6;
    padding: 1px 0;
} */

a:active {
    color: var(--blue4);
}


/************ Basic typography *************/

body {
    /* font-family: Century; */
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
    /*font-family: Georgia,serif;*/
    font-family: "Courier New", Courier, monospace;
    color: var(--rich-black);
    background-color: var(--alice-blue);
    line-height: 1.6;
    padding: 1rem;
}

/* h1,
h2,
h3,
h4 {
    font-family: Century;
    font-weight: 600;
}

h2 {
    font-size: 24px;
    margin: .8em 0;
    color: var(--rich-black);
}

h3 {
    font-size: 20px;
    margin: 1em 0;
    color: var(--blue6);
}

h4 {
    margin: 1em 0;
}

h5 {
    margin: 1em 0;
}


h6 {
    margin: 1em 0;
} */


p {
    margin: 1em;
    line-height: 1.4em;
}

/************ Basic Page Sections *************/

#page {
    margin: auto;
}

.category {
    background: var(--white1);
    border-radius: 10px;
    padding: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}

.category h2 {
    /* color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee; */

    background: var(--blue4);
    color: white;
    padding: 0.2rem;
    border-radius: 5px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: transform 0.2s, background-color 0.2s;
    margin: 0.5rem;
}

.logos:hover {
    /* transform: translateY(-2px); */
    transform: scale(1.2);
    
}

.logos {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    /* margin-bottom: 0.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white1);
}

.link-name {
    font-size: 0.9rem;
    color: #444;
    text-align: center;
}

/************ Header Styles *************/

header {
    
    padding: 5px 0;
    /*background-color: rgba(255,224,153,0.75);*/
    background-color: var(--blue1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
    
}

.logo {
    position: relative;
    margin: auto;
    width: 100%;
}

.logo h1 {
    font-size: 24px;
    color: var(--blue3);
    position: absolute;
    top: 10px;
    left: 42px;
    font-family: "Courier New", Courier, monospace;
}

.logo img {
    width: 50px;
}

.logo img:hover {
    transform: scale(1.2);
}

header nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    
}

header nav ul li a {
    display: block;
    font-family: 'Quicksand', sans-serif;
    color: var(--alice-blue);
    font-weight: 600;
    padding: 0 5px;
    width: 100%;
    font-size: 1.5em;
}

.menu{
    padding: 0 2%;
}

.icons{
    padding: 5px 0;
}

.material-symbols-outlined {
    font-size: 2em;
    color: #2fd80e;
    padding: 0 1em;
}

.night {
    border: none;
    background-color: var(--blue1);
    position: absolute;
    top: .5em;
    right: .5em;
    padding-block: 1px;
    padding-inline: 6px;
}

.night:hover {
    background-color: rgb(153, 154, 155);
    border-radius: 50%;
}

.night .material-symbols-outlined {
    font-size: 2em;
    color: black;

}

/************ Footer Styles *************/

footer {
	/*background: var(--blue5);*/
    background: var(--green3);
	color: var(--blue2);
	margin-bottom: 0;
    padding: 5px 0;

    
    /* position: fixed; */
    width: 100%;
    bottom: 0;
}

footer .logo {
	margin-bottom: 20px;
}

footer .logo h1 {
	font-size: 1.5rem;
    color: var(--blue6);
    position: absolute;
    top: 10px;
    left: 42px;
    font-family: "Courier New", Courier, monospace;
    
}

footer nav ul {
	display: flex;
	justify-content: space-around;
	margin-bottom: 20px;
}

footer nav ul a{
    font-size: 2em;
}

footer nav ul li:hover {
    transform: scale(1.3);
}

footer article{
	font-size: 1em;
	text-align: center;
	color: var(--blue6);
    font-family: "Courier New", Courier, monospace;
}

footer article p{
	font-weight: 500;
	
}

footer a:hover{
    border-bottom:0;
}


