.toolbar {
    margin: auto;
    margin-top: 60px;
    display: flex;
}

.toolbar-button {
    background: linear-gradient(
        hsl(46.18, 82.61%, 63.92%),
        hsl(46.18, 65.61%, 45.92%) 50%,
        hsl(46.18, 62.61%, 43.92%) 60%,
        hsl(46.18, 65.61%, 45.92%) 70%,
        hsl(46.18, 82.61%, 63.92%)
    );
    border-radius: 50%;
    border: 2px solid #f7f496;
    box-shadow: 0 0 2px #f7f496;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #f7f496;
    margin: 5px;
    cursor: pointer;
    filter: grayscale(10%);
}

.toolbar-button:focus {
    outline: none;
}

.toolbar-icon {
    height: 100%;
    width: 100%;
    fill: hsl(58, 86%, 88%);
    filter: drop-shadow(0px 1px 2px hsl(46.18, 62.61%, 33.92%));
}

.dark-stroke {
  stroke: hsl(46.18, 62.61%, 43.92%);
  stroke-width: 2px;
}

.thick-stroke {
  stroke-width: 4px;
}

#cancelButton {
  filter: hue-rotate(310deg);
}

#confirmButton {
  filter: hue-rotate(30deg);
}

body {
  background: #111;
  display: flex;
}

body, html {
  height: 100%;
}

p {
  color: white;
}

.miniwebsite-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  justify-items: center;
  margin: 50px auto; /* Adjust margin as needed */
}

.miniwebsite {
  width: 400px;
  height: 300px;
  border: 1px solid #ccc;
}

h1 { color: orange; }