@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
    font-family: ubuntu, sans-serif;
    margin: 0 auto;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: ubuntu, sans-serif;
  }
  
  
  /* Dark mode styles */
  .dark-mode {
    background-color: #222222;
    color: white;
  }
  
  .dark-mode input[type="text"],
  .dark-mode textarea,
  /* .dark-mode button, */
  .dark-mode #dark-mode-toggle {
    background-color: #222222;
    color: white;
  }
  
  #dark-mode-toggle {
    /* position: fixed; */
    /* top: 20px; */
    /* right: 0px; */
    background-color: #ffffff;
    /* color: white; */
    /* margin-top: 20px; */
    /* padding: 10px; */
    border: none;
  }


#notepad-container {
	width: 800px;
	margin: 0 auto;
	text-align: center;
}

#notepad-text {
	width: 100%;
	height: 400px;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
    border-radius: 7px;
}
button{
    border-radius: 10px;
    background-color: #ffffff;
}
#button-container {
    display: flex;
    justify-content: flex-end;
  }
#notepad-save {
    margin-right: 10px;
}
button :hover{
    cursor: pointer;
}

#file-name {
	width: 100%;
	margin-bottom: 20px;
}
/* Media queries for adjusting the height of the notepad-container div */
@media screen and (max-width: 768px) {
    #notepad-container {
      height: 80vh;
    }
  }
  
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #notepad-container {
      height: 60vh;
    }
  }
  
  @media screen and (min-width: 1024px) {
    #notepad-container {
      height: 40vh;
    }
  }

  #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  