*:not(#background) {
  pointer-events: auto;
}

.jacquard-12-regular {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
}
.jacquarda-bastarda-9-regular {
  font-family: "Jacquarda Bastarda 9", serif;
  font-weight: 400;
  font-style: normal;
  color: #837c6f;
}

p {
    margin: 0%;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.2rem;
}

#background {
    background-image: url(./images/pixelgothic.png);
    background-size: cover;
    height: 100dvh;
    margin: 0%;
    pointer-events: none;
}

#taskbar {
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #1c1a18;
    justify-content: space-between;
    padding-right: 10px;
}

.app-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 500px;
  width: 500px;
  background-color: #6b6e73;
  border: 8px solid #1c1a18;
  display: none ;
}

#welcome {
  display: flex;
}

.welcome-window {
  display: flex;
  flex-direction: column;
}


.app-header {
  height: 40px;
  width: 500px;
  background-color: #1c1a18;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  pointer-events: auto;

}

#notes {
  display: none;
  background-color:#3b2f75;
  border: 8px solid #1c1a18;
}

#music {
  display: none;
  background-color:#753151;
  border: 8px solid #1c1a18;
  height: 650px;
}

#calculator {
  display: none;
  background-color:#484a85;
  border: 8px solid #1c1a17;
}


#browser {
  display: none;
  background-color: #363434;
  border: 8px solid #1c1a18;
}

.close-button {
  cursor: pointer;
}

.open-button{
  cursor: pointer;
}

.header-title {
  font-size: 1.8rem;
}


.open-button {
  width: 120px;
  height: auto;
}

.apptitle {
  font-size: 1.5rem;
  color: #c1bcb4;
  text-align: center;
}

.flex-row {
  position: relative;
  top: 40px;
  left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 120px;
  border-radius: 20px;
  height: 140px;
  margin-bottom: 25px;
}

.selected {
  background-color: rgba(255, 255, 255, 0.234);
}

.blank-notes {
  height: 200px;
  width: 150px;
  background-color: #a993ce;
}

.calc-button {
  height: 100px;
  width: 100px;
  background-color: #7686d6;
  border-color: #596ed5;
  color: #484a85;
  border-width: 5px;
  font-size: 3rem;
  font-family: "Jacquarda Bastarda 9", serif;
  font-weight: 400;
  font-style: normal;
}

.calc-window {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 650px;
  width: 412px;
}

.music-window {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#act-calculator {
  overflow: hidden;
}

#display {
  width: 100%;
  padding: 20px;
  border: none;
  text-align: left;
  background-color: #9ba8e8;
  font-size: 3rem;
  font-family: "Jacquarda Bastarda 9", serif;
  font-weight: 400;
  font-style: normal;
  color: #484a85;

}

#calculatorheader {
  width: 420px;
}

#music-item-holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px
}

.music-button {
  height: 80px;
  width: 80px;
  background-color: #ba5c86;
  border-color: #b32a75;
  color: #932357;
  border-width: 5px;
  font-size: 3rem;
  font-family: "Jacquarda Bastarda 9", serif;
  font-weight: 400;
  font-style: normal;
}

#song-image {
  border-color: #932357;
  border: 10px;
  border-radius: 3px;
}
.music-text {
  text-align: center;
  font-size: 2rem;
  font-family: "Jacquarda Bastarda 9", serif;
  font-weight: 400;
  font-style: normal;
  color: rgb(221, 211, 204);
}


#slider-song {
  accent-color: #ce81a4;
  width: 400px;
}

iframe {
		width: 100%;
    height: 460px;
    filter: invert(90%) hue-rotate(180deg);
    color-scheme: dark;
}

.browser-window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 700px;
}

#browserheader {
  width: 700px;
}

#calc-title {
  font-size: 1.36rem;
}

.notes-window {
  display: flex;
  flex-direction: column;
  height: 500px;
  width: 660px;
}

#notesheader {
  width: 660px;
}

#notes-content {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  gap: 10px;
  overflow: hidden;
}

.note {
  height: 150px;
  width: 150px;
  resize: none;
  background-color: #836fda;
}

.add-note {
  width: 155px;
  font-size: 6rem;
  background-color: #7b54fd;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.add-note:hover {
  background-color: #6235f9;
}

#welcome-paragraph {
  margin: 10px;
  font-size: 1.6rem;
  font-family: "Jacquarda Bastarda 9", serif;
  font-weight: 400;
  font-style: normal;
}

