/*Imports*/
@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');

/*reset*/
*,*::before, *::after {
  box-sizing: border-box;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  height: 100vh;
}

* {
  margin: 0px;
}

/*Visuals*/

body {
  background-image: url("imgs/datagroveBG.png");
  display: flex;
  width: 100%;
  font-family: "Concert One";
}

.body { 
  width: 100%;
  height: 100%;
  font-size: 150%;
  background-color: rgb(83, 159, 138);
  display: flex;
  flex-direction: column;
}

.bar {
  width: 100%;
  height: 8%;
  border-radius: 0px 0px 15px 15px;
  background-color: rgb(49, 131, 98);
  display: flex;
  justify-content: center;
}

.Content {
  margin: 25px 20px 0px 20px;
  display: flex;
  flex-direction: row;
}

.welcomeMsg{
 width: 75%;
 height: auto;
}

hr.dashed {
  border-top: 3px dashed #000000;
  border-bottom: #00000000;
  width: 100%;
}

.toolList {
  width: 25%;
  height: 100%;
  margin: 10px 15px;
  border-radius: 15px;
  background-color: rgb(49, 131, 98);
  display: flex;
  align-items: center;
  flex-direction: column;
}
