body {
	font-family: "Nunito", sans-serif;
	font-weight: 400;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100svh;
    max-height: 100%;
    overflow: hidden;
    width: 100%;

    margin: 0;
    padding: 0;

	background-color: #2d3d4f;
	color: #f4edd5;

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

main {
	width: 38rem;
	background-color: #202a36aa;
	border-radius: 2rem;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
		rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
		rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
	backdrop-filter: blur(10px);
	padding: 2rem;
}

.title {
	text-align: center;
    font-size: 2rem;
    text-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    margin-bottom: 2rem;
}

.timezone {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

	padding: 20px;
	margin: 10px;
	border-radius: 1rem;
	font-size: 2.5rem;
	background-color: #3d67805a;
    text-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.timezone>span {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.timezone>span>img {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
}

.clock {
	font-family: "Space Mono", monospace;
}

.personal-message {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 3rem;

    font-size: 1.5rem;
    text-align: left;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.personal-message p {
    max-width: 40ch;
    margin: 0;
}


@media screen and (max-width: 670px) {
    main {
        width: 24rem;
    }

    .timezone {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 2rem;
    }

    .personal-message {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 470px) {
    main {
        width: 16rem;
    }

    .title {
        font-size: 1.2rem;
    }

    .timezone {
        font-size: 1.4rem;
        margin-inline: 0;
    }

    .personal-message {
        font-size: 1rem;
    }
}