#app {
  text-align: center;
}

body
{
  margin: 0;
  min-height: 100vh;
  background-image: url('/CustomNewTabPage/assets/background-Cxx6gj9w.jpg');
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: sans-serif;
}

.content1
{
  margin: 15px;
  padding: 20px;
  width: 500px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.content2
{
  margin: 15px;
  padding: 20px;
  width: 500px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

#clock
{
    color: rgba(255, 255, 255, 0.6);
    font-size: 50px;
    font-family: monospace;
    font-weight: bold;
}

#date
{
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-family: monospace;
    font-weight: bold;
}

#timer
{
    color: rgba(255, 255, 255, 0.6);
    font-size: 50px;
    font-family: monospace;
    font-weight: bold;
}

.bookmarks-container
{
    position: relative;
    top: 20px;
    height: 100px;
}

.content1 p, .content2 p
{
    color: rgba(255, 255, 255, 0.7);
}

.content1 a, .content2 a
{
    color: rgba(255, 255, 255, 0.7);
}

hr
{
    height: 80px;
    border: none;
}

.search-input
{
    z-index: 10;
    width: 300px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 5px;
    border-radius: 10px;
    padding-left: 5px;
}

.search-input::placeholder
{
    color: lightgray;
}

.horizontal
{
    display: flex;
    align-items: stretch;
}

.horizontal button
{
    border: none;
    border-radius: 10px;
    margin: 5px;
    width: 50px;
    font-family: monospace;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    line-height: 40px;
}

.horizontal #timer
{
    margin-left: 15px;
    margin-right: 15px;
}

.large
{
    font-size: 25px;
}