@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    font-family: 'Pacifico', cursive;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #FDC7D7;
}

#birthdayMessage {
    text-align: center;
    margin-bottom: 20px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 24px;
}

#map {
    width: 90vw;
    height: 80vh;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

#images {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

#city-image {
    border-radius: 15px;
    max-height: 80vh;
    max-width: 80vw;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.custom-icon::before {
    content: '';
    display: block;
    position: absolute;
	width: 10px; /*Should match customIconDefault in script.js*/
	height: 10px; /*Should match customIconDefault in script.js*/
    border-radius: 50%;
    background-color: transparent;
}

.custom-icon:hover::before {
	content: '';
    display: block;
    position: absolute;
	width: 15px; /*Should match customIconHover in script.js*/
	height: 15px; /*Should match customIconHover in script.js*/
    border-radius: 50%;
    background-color: transparent;
}