@import url('https://fonts.googleapis.com/css2?family=Margarine&family=Mynerve&display=swap');

body {
  background: rgb(64, 84, 117);
  background-image: url('img/icon-2.png');
}

main {
  width: 90%;
  margin: 0 auto;
  color: white;
}

h1 {
  /* margin: 0 auto; */
  text-align: center;
  font-family: "Margarine", sans-serif;
  color: white;
  font-size: 72px;
  margin: 10px;
}

#cloud-canvas {
  /* background-color: lightblue; */
  width: 100%;
  height: 70vh;
  border: 3px solid white;
}

#colors {
  display: flex;
  flex-wrap: wrap;
}

#colors button {
  width: 50px;
  height: 50px;
  border-style: inset;
  border: 0px solid black;
}

#toolbar button i {
  font-size: 32px;
}

#toolbar {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 15px;
  margin: 10px 0;
}
#tools {
  display: flex;
  column-gap: 10px;
}

#tools button {
  height: 50px;
  width: 50px;
  background-color: white;
  border: none;
  border-radius: 5px;
}

footer {
  margin-top: 50px
}

footer a {
  height: 40px;
  width: fit-content;
  display: flex;
  margin: 0 auto;
  color: white;
  align-items: center;
  font-size: 24px;
  padding: 10px 15px;
  text-decoration: none;
  column-gap: 8px;
  border: 2px solid white;
  /* background-color: rgba(65, 67, 124, 1); */
  border-radius: 5px;
  font-family: "Margarine", sans-serif;
}

footer a:hover {
  background-color: rgb(56, 75, 137);
  box-shadow: 5px 5px 5px 5px rgb(62, 67, 101);
  font-size: 28px;
  height: 46px;
  margin-top: -3px;
}

footer a img {
  height: 100%;
  width: auto;
}