
*{
    box-sizing: border-box;
}

body {
	font-family: 'Courier New', Courier, monospace;
  	margin: 2%;
	padding-top: 3%;
	background-image: url("gradientblue.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

#header{
    width: 100%;
    height: 200px;
    background-color: rgb(127, 182, 199);
    margin: 0;
}

h1{
	font-weight: bolder;
	font-size: large;
	text-align: center;
	color: rgb(32, 52, 87);
	font-size: xx-large;
	padding-top: 6%;
}

.pic1{
	border: solid rgb(208, 158, 183) 4px;
}

.link a:link{
	text-decoration: none;
	font-weight: bold;
	color: blue;
}

.link2 a:link{
	text-decoration: none;
	font-weight: bold;
	color: blueviolet;
}

.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;
}

.link3 a:link{
	text-decoration: none;
	font-weight: bold;
	color: blueviolet;
}

.shoe{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 20px;
}

.text{
	width: 30%;
	text-align: justify;
	border: solid black 2px;
	background-color: rgba(255, 255, 255, 0.773);
	text-align: center;
}

.image img{
	width: 270px;
	display: block;
	border: dashed rgba(255, 255, 255, 0.817) 2px;
}

.kingdom{
	display: flex;
	align-items: self-start;
	gap: 20px;
}

.text2{
	font-size: medium;
	margin-left: 5px;
	border: solid black 2px;
	border-radius: 12%;
	text-align: center;
	background-color: rgb(241, 202, 209);
}

.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: "🏰";
}
