/*Global*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url(Images/day/20s_photo_day.jpeg) center / cover no-repeat;
    /*background: #f5f5f5; old background color*/
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1{
	font-family: Tahoma;
	font-size: 2rem;
	font-weight: normal;
}

h2{
	font-family: Arial;
	font-size: 1.25rem;
	font-weight: normal;
	padding-bottom: 5px;
}

.slant{
	font-style: italic;
}

.bold{
	font-weight: bold;
}

/*Banner*/

.banner-section{
    display: flex;
    justify-content: center;
}

.banner {
    margin-top: 2rem;
    background: #2d5fa3;
    color: white;
    padding: 20px;
    text-align: center;
    width: 70%;
}

/*Main Content*/

main {
    flex: 1;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

/*Two Text Containers*/

.top-content {
    display: flex;
    justify-content: space-between;
    gap: 5%;
    margin-bottom: 50px;
}

.text-box {
    flex: 1;
    background: #f9f9ca;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}


#info-box{
    max-width: 30%;
}


/*Iframe*/

.iframe-section {
    display: flex;
    justify-content: center;
}

.iframe-container {
    width: 800px;
    max-width: 100%;
    height: 450px;
    background: #f9f9ca;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/*Footer*/

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

/*Mobile*/

@media (max-width: 800px) {
    .top-content {

        flex-direction: column;
        gap: 30px;
    }

    .iframe-container {

        height: 300px;
    }
}
