.germania-one-regular {
  font-family: "Germania One", system-ui;
  font-weight: 400;
  font-style: normal;
}


body {
    background-image: url("forest_copy.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: verdana, sans-serif;
    font-size: 12px;
    font-weight: bold;
}

.layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1;
    gap: 13px;
    margin-left: 120px;
    margin-right: 120px;
   /* background-color: rgba(223, 219, 200, 0.9);
    border: 20px solid transparent;
   /* border-image: url('lace_border.png') 32 round; */
}

/* HEADER */
.header {
    grid-column: 1 / span 5;
    grid-row: 1;
    font-family: "Germania One";
    font-size: 33px;
    text-align: center;
    background-color: rgba(223, 219, 200, 0.9);
    border: double 3px black;

}

/* LEFT NAVIGATION */
.navigation {
    grid-column: 1;
    grid-row: 2 / span 3;
    text-align: center;
    background-color: rgba(223, 219, 200, 0.9);
    border: double 3px black;
}

ul li {
  text-align: left;
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 0; /* Adjust for desired space between bullet and text */
}

a:link {
  color: black; /* Sets the color for unvisited links */
}

a:visited {
  color: #595959; /* Sets the color for visited links */
}

a:hover {
  color:#828282
}

/* ABOUT ME */
.about-me {
    grid-column: 2/ span 2;
    grid-row: 2 / span 2;
    background-color: rgba(223, 219, 200, 0.9);
    border: double 3px black;
    padding: 20px;
    margin-bottom: 20px;
}

/* WEATHER SECTION */
.weather {
    grid-column: 4 / span 3;
    grid-row: 2 / span 3;
    background-color: rgba(223, 219, 200, 0.9); 
    background-size: cover;
    text-align: center;
    border: double 3px black;
    padding: 20px;
}

.search{
  width:100%;
  display: flex;
  align-items: center;
  margin: 10px;
}

.search input{
  border:0;
  outline:0;
  background-color:rgba(138, 171, 222, 0.9);
  color: #000000;
  padding: 10px 25px;
  height:60px;
  border-radius:30px;
  flex:1;
  margin-right:16px;
  font-size: 18px;
}

.search button{
  border:0;
  outline:0;
  background:#ebfffc;
  border-radius: 50px;
  width: 70px;
  height:70px;
  cursor:pointer;
}

.search button img{
  width: 28px;
}

.weather-icon{
  width: 170px;
  margin-top: 30px;
}

.weather h1{
  font-size: 80px;
  font-weight:500;
}

.weather h2{
  font-size: 80px;
  font-weight:500;
  margin-top:-10px;
}

.details{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-top:50px
}

.col{
  display:flex;
  align-items: center;
  text-align: left;
}

.col img{
  width: 40px;
  margin-right: 10px;
}

.humidity, .wind{
  
}



/* SHRINE SECTION */
.shrines {
    grid-column: 1;
    grid-row: 4;
    padding-left: 10px;
    text-align: center
}

/* MY ART */
.my-art {
    grid-column: 2 / span 2;
    grid-row: 4;
    max-height: 350px;
    padding-right: 10px;
    overflow-y: scroll;
    align-items: center;
    background-color: rgba(223, 219, 200, 0.9);
    border: double 3px black;
}


