@import url('https://fonts.googleapis.com/css2?family=Aguafina+Script&family=Arima&family=Italiana&family=Poiret+One&family=Roboto:wght@300;700&display=swap');

:root {
  --blue: #126577;
  --offblue: #afcbcd;
  --white: #e7e9eb;
  --yellow: #eb6e4b; 
}

html, body {
	background-color: var(--blue);
	color: white;
	font-family: 'Italiana', serif;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

section {
	margin: 0 auto;
	max-width: 768px;
	padding: 25% 5%;
}

.temp {
	font-family: 'Roboto', sans-serif;
	font-size: 110px;
	line-height: 1.5;
	background: linear-gradient(to top, var(--blue) 0% , var(--white) 80%);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
  	padding-left: 0.4em;
  	font-weight: 700;
}

.city {
	font-family: sans-serif;
	font-size: 30px;
	line-height: 1.5;
}

.desc {
	font-family: sans-serif;
	font-size: 15px;
	line-height: 1.5;
	text-transform: capitalize;
}

.p {
	font-family: sans-serif;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
	color: rgba(98, 151, 159);
	
}

.p2 {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
	color: var(--white);
}

.content {
	display: flex;
  	flex-direction: column;
    align-content: space-around;
    align-items: center;
    padding-top: 10%;
}

.media {
  margin-top: -35%;
  margin-bottom: -30%;
  width: 200px;
  height: 200px;
}

.media img {
  margin-top: -20px;
}

.subcontent{
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 37%;
}

.time img{
  padding: 5px;
  width: 40px;
}

.menu {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 5%;
}

.circle {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 8%;
  text-align: -webkit-center;
  background: rgba(98, 151, 159, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fa-solid {
	font-size: x-large;
}

.fa-diamond{
	margin-top: 11px;
	font-size: large;
	color: var(--white);
}

@media all and (min-width: 375px) {
	section {
    padding: 25% 5%;
  }
  .media {
    margin-top: -25%;
    margin-bottom: -35%;
  }
}

@media all and (min-width: 768px) {
	section {
    padding: 15% 5%;
  }
  .media {
    margin-top: -15%;
    margin-bottom: -40%;
  }
}

.navbar {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  border-radius: 18px;
  padding-bottom: 2.5%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: rgba(98, 151, 159, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar a {
  color: var(--white); 
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  color: var(--yellow);
}

.navbar a.active {
  color: var(--yellow);
}

.navbar .fa-solid  {
  font-size: unset;
}

.preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: #fff;
  transition: opacity .25s, visibility 1s;
}

.preloader img {
	width: 100%;
    display: block;
    margin-left: 0%;
    margin-right: 0%;
    margin-top: 50%;
}

#error {
	display: block;
	text-align: center;
	color: var(--blue);
}

.customAlert {
  display: none;
  position: fixed;
  height: 160px;
  width: 200px;
  margin-left: 20%;
  margin-top: 75%;
  background: rgba(18, 101, 119, 0.5);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(18, 101, 119, 1);

border-radius: 20px;
}
@media all and (max-width: 1300px) {
  .customAlert .message {
    font-size: 14px !important;
  }
  .customAlert input[type=button] {
    height: 15% !important;
  }
}
.customAlert .message {
  padding: 10px;
  color: white;
  font-size: 14px;
  text-align: center;
}
.customAlert input[type=button] {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 50%;
  height: 36px;
  margin-top: -45px;
  margin-left: -25%;
  outline: 0;
  border: 0;
  background: white;
  color: var(--blue);
  border-radius: 20px;
}
.customAlert input[type=button]:hover {
  transition: 0.3s;
  cursor: pointer;
  background: var(--blue);
}

.rab {
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: var(--blue);
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}