body {
    font-family: 'Roboto', sans-serif;
  }
  #clock {
    font-size: 90px;
    color: white;
    margin-bottom: 10px;
    display: flex;
  }
  
  #date {
    display: flex;
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
  } 
  #bookmarks-container {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .bookmark {
  width: 100px;
  height: 50px;
  background-color: #3498db;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  margin-bottom: 10px;
  }
  svg {
  fill: currentColor;
  }
  
  .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease;
  background-size: contain;
  background-size: 100% 100%;
  z-index: -1;
  }
  body, html {
  height: 105%;
  margin: 0;
  overflow: hidden;
  }
  .search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  flex-direction: column;
  }
  form {
  display: flex;
  align-items: center;
  justify-content: center;
  }
  input[type="text"]{
  padding: 10px;
  font-size: 16px;
  width: 500px;
  height: 55px;
  border-radius: 50px 0 0 50px;;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-right: 0px;
  border-top: 1px solid;
  }
  input[type="text"]:focus {
    outline: none;
  }
  button[type="submit"]{
  position: relative;
  padding: 10px 15px;
  background-color: #4285f4;
  border-radius: 0 5px 5px 0;
  font-size: 17px;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  height: 55px;
  border-bottom: 1px black;
  border-left: 0px solid black;
  border-right: 1px solid black;
  border-top: 1px solid black;
  color: white;
  transition: background-color 0.5s ease-in-out;
  }
  button[type="submit"]:hover {
  background-color: #0c69ff;
  }
  /* Stijl voor de placeholder tekst */
  ::placeholder {
  color: #999; /* Kleur van de placeholder tekst */
  font-size: 16px; /* Grootte van de tekst */
  font-style: italic; /* Schuin weergeven (italic) */
  /* Voeg andere stijlen toe zoals nodig */
  width: 50000px;
  }
  h6 {
  font-size: 2px;
  }
  h1 {
  text-align: left;
  color: white;
  }
  #logo {
    width: 150px;
    margin-left: 20px;
    margin-top: 10px;
  }
  
        
  #weatherButton {
    position: fixed;
    top: 20px;
    right: 50px;
    cursor: pointer;
  }

  #weatherBox {
    display: none;
    position: fixed;
    top: 60px;
    right: 20px;
    width: 200px;
    background: linear-gradient(to bottom, #ffcccc, #cc0000); /* Van licht rood naar donker rood */
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    z-index: 1;
    border-radius: 10px;
  }

#box {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    background-color: rgba(200, 200, 200, 0.8); /* Semi-transparante grijze achtergrond */
  }

  #weatherIcon {
    fill: #3498db;
    width: 35px;
    height: 35px;
  }

  #location {
    font-size: 1.2em;
    font-weight: bold;
  }

  #temperature {
    margin-top: 10px;
    font-size: 1.5em;
  }

  #description {
    margin-top: 10px;
  }
  #weatherConditionIcon {
    width: 50px;
    height: 50px;
  }
  @media screen and (max-width: 570px) {
    #clock {
      font-size: 80px;
  
    }
    #date {
      display: none;
    }
    input[type="text"] {
      width: 75vw;
    }
    .search-container {
      width: 100%;
    }
  }

