@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

header {
	background-color: #babfd8;
	padding: 20px;
	border-bottom: 1px solid black;
}

header > h1 {
	text-align: center;
	font-size: 40px;
	font-weight: bold;  
}

body {
	background-color: #41424c;
}

.map {
	background-color: #babfd8;
	border: 1px solid black;
	border-radius: 50px;
	width: 900px;
	height: auto;
	text-align: center;
	margin: 50px auto;
	position: relative
}

.map > svg {
	width: 890px;
	height: auto;
}

.white-hover > path:hover {
	fill: white;
	transition: 0.3s;
}

g:not(.white-hover) > path{
	fill: gray;
	color: gray;
}

#islandName {
	position: absolute;
	bottom: 30px;
	left: 50px;
	border: 1px solid black;
	border-radius: 10px;
	background-color: gray;
	padding: 20px;
	visibility: hidden;
}

#islandName > p {
	font-size: 32px;
}