/* import XIcon from '@mui/icons-material/X'; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    /* background-color: #f4f4f4; */
    background-color: #333;

    color: #333;
    line-height: 1.6;
}

a {
    color: whitesmoke;
    text-decoration: none;
}

header {
    background-color: #222;
    /* margin: auto; */
    /* display: inline-flex; */
    /* display: grid; */
    /* grid-template-columns: 1fr 75%; 2 equal columns */
    /* grid-template-rows: auto auto; enough rows for stacking */
    /* height: 100px; */
}

header{
    display: inline-flex;
    width: 100%;
    justify-content: stretch;
    align-items: center;
}


/*                */
/* NAVIGATION BAR */
/*                */

nav {
    /* padding-left: 50%; */
    width: 100%;
}

header h1 {
    width: 50%;
}

.main-nav ul{
    display: inline-flex;
    list-style: none;
    justify-content: space-evenly;
    /* align-items: center; */
    /* border-radius: 5px; */
    color: whitesmoke;
    width: 100%;
    /* align-items: space-around; */
}
.main-nav ul li {
    /* display: inline; */
    padding: 20px;
    font-size: 1.2em;
    /* text-align: end; */
    /* border: #333 1px solid; */
}

header .social-media {
    width: 200px;
}

.social-media ul{
    display: inline-flex;
    list-style: none;
}

.social-media ul li {
    /* display: inline; */
    padding: 10px;
    font-size: 1.2em;
}

header > * {
    /* border: #333 1px solid; */
    align-items: start;
    justify-content: start;
    text-align: left;
}

h1 {
    font-size: 2.5em;
    /* width: 100%; */
    /* display: block; */
}

h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

header > img {
    height: 100%;
    width: 75%;
    /* margin: 10px; */
    padding: 5px;
    grid-column: 1;       /* stays in the first column */
    grid-row: 1 / span 2; /* spans both rows (tall column) */
}
/* header > img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
} */