
*{
	box-sizing: border-box;
}

body {
	font-family: 'Courier New', Courier, monospace;
	background-image: url("gradientlightpink.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 2%;
	padding-top: 2%;
  	

}

#header{
    width: 100%;
    height: 200px;
    background-color: rgb(202, 147, 206);
    margin: 0;
}


h1{
	font-weight: bolder;
	font-size: large;
	text-align: center;
	color: rgb(95, 11, 74);
	padding-top: 6%;
	font-size: xx-large;
}

.link a:link{
	text-decoration: none;
	font-weight: bold;
}

.link2 a:link{
	text-decoration: none;
	font-weight: bold;
}

.link3 a:link{
	text-decoration: none;
	font-weight: bold;
}

.pic1{
	width: 250px;
	border: solid rgb(241, 241, 0) 3px;
}

.pic2{
	width: 200px;
	border: solid white 3px;
}

.container{
	display: flex;
	align-items: self-start;
	gap: 20px;
}

.text{
	width: 50%;
	font-size: medium;
	margin-left: 6%;
	border: solid black 2px;
	text-align: center;
	background-color: white;
}

.text2{
	flex: 1;
	border: solid black 2px;
	text-align: center;
	background-color: white;
}

.footer{
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr 1fr;
}

.footer p{
	margin: 0;
}

.link{
	text-align: left;
}

.link2{
	text-align: center;
}

.link3{
	text-align: right;
}

.home-icon{
	font-size: 28px;
    text-decoration: none;
	display: inline-block;
	transition: 0.3s;
}

.home-icon:hover{
    transform: scale(1.2);
}

#menu-bar{
    width: 100%;
    /*border-bottom: solid 2px;*/
    height: 57px;
    padding-top: 15px;
    background-color: rgb(242, 238, 232);
	}

.menu-item{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    float: left;
	font-weight: bold;
	color: rgb(43, 137, 226);
}

.current{
    font-weight: bold;
    color: green;
    background-color: rgb(206, 192, 150);
}

#container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.menu-item a:link{
    color: purple;
    font-weight: bold;
    text-decoration: none;
}

.menu-item a:visited{
    color: rgb(43, 137, 226);
    text-decoration: none;
    font-weight: bold;
}

.menu-item:hover {
    background-color: rgb(206, 192, 150);
}

.tangled a::before{
	content: "🏰";
}