/*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");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 100%;
  font-family: "Concert One";
}

.LeftBOX {
  width: 50%;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.InfoBOX {
  width: 50%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nametag {
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 15px;
  margin: 20px 10px 10px 15px;
  font-size: 35px;
  background-color: rgb(253, 238, 238);
  opacity: 80%;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.toolbar {
  width: auto;
  height: 10%;
  border-radius: 15px;
  margin: 20px 15px 5px 10px;
  background-color: rgb(253, 238, 238);
  opacity: 80%;
}

.NightMode {
  width: 50px;
  height: 80%;
  border-radius: 50px;
  margin: 5px;
  background-color: blueviolet;
}

.LinkBOX{
  width: auto;
  height: 75%;
  padding: 10px;
  display: flex;
}

.ToolPANN {
  width: 50%;
  height: 100%;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 15px;
  font-size: 125%;
  background-color: rgb(253, 238, 238);
  opacity: 80%;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.CreatePANN {
  width: 50%;
  height: 100%;
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 15px;
  font-size: 125%;
  background-color: rgb(253, 238, 238);
  opacity: 80%;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.QuickLinks {
  width: auto;
  height: 20%;
  padding: 5px 10px;
  margin: 5px 10px 10px 10px;
  border-radius: 15px;
  font-size: 125%;
  background-color: rgb(253, 238, 238);
  opacity: 80%;
}