/* Stylesheet.css */
@import url('https://fonts.googleapis.com/css2?family=Rubik+Maps&family=Signika:wght@700&family=Tilt+Warp&display=swap');

body {
  font-family: Arial, sans-serif;
  background-color: #F5F4F4;
}

img{
    width:100%;
    max-width:600px;
}

h1 {
  /* font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  /* font-family:Verdana, Geneva, Tahoma, sans-serif; */
  /* font-family:Arial, Helvetica, sans-serif; */
  font-family: "Tilt Warp", sans-serif;
  font-weight: 400;
  color: #000000;
  text-align: left;
}

h4 {
    color: #000000;
    text-align: left;
}

ul
{
  margin-left:14px;;
}

li {
  margin: 10px 0;
}

p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.note
{
  margin-top: 6px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #787878;
  line-height: 1;
  font-style: italic;
}

hr.dashed {
  border-top: 1px dashed #bbb;
  color: #ffffff00;
}

hr.dotted {
  border-top: 2px dotted #bbb;
}

.subtle a:link
{
  color: gray;
}

.subtle a:hover {
  color: white;
  background-color: black;
}

.subtle a:visited {
  color: gray;
}

img.logo
{
  margin-right: 6px;
  /* float: left; */
  vertical-align: baseline;
  height: 28px;
  width: 28px;
}
h1.header
{
  /* float: right; */
}

.header a:link {
  color: black;
}

/* visited link */
.header a:visited {
  color: black;
}

/* mouse over link */
.header a:hover {
  color: white;
  background-color: black;
}

/* selected link */
.header a:active {
  color: black;
}

/* unvisited link */
a:link {
  color: rgb(167, 73, 255);
}

/* visited link */
a:visited {
  color: rgb(167, 73, 255);
}

/* mouse over link */
a:hover {
  color: white;
  background-color: rgb(167, 73, 255);
}

/* selected link */
a:active {
  color: rgb(167, 73, 255);
}

ul {
    padding-inline-start: 0;
    list-style-position: inside
}

button {
  background-color: rgba(82, 82, 82, 0);
  border: solid;
  border-width: thin;
  color: rgb(0, 0, 0);
  width: 120px;
  padding: 6px 4px;
  margin-bottom: 3px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: rgb(0, 0, 0);
  border: solid;
  border-width: thin;
  color: rgb(255, 255, 255);
  text-align: left;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

button:active {
  background-color: rgb(0, 0, 0);
  border: solid;
  border-width: thin;
  color: rgb(255, 255, 255);
  text-align: left;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.contentBox {
    margin: 2%;
    display: grid;
    grid-template-columns: 1fr;
}

.previewBlogItem
{
  display:flex;
  justify-content: space-between;
  width: 100%;
}

.previewBlogItem p
{
  margin: 0;
}

@media screen and (min-width: 800px) {
  .contentBox {
    margin: 2%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 1px;
    /* background-color: black; */
  }
}

textarea {
  width: 100%;
  height: 600px;
}

.submit_yes
{
  background-color: rgb(235, 63, 63);
  padding: 5px 10px;
  border: none;
  font-size: 16px;
}

.submit_yes:hover
{
  transition: 0.15s ease-in-out all;
  background-color: black;
  color: white
}

.submit_no
{
  background-color: gray;
  padding: 5px 10px;
  border: none;
  font-size: 16px;
}

.submit_no:hover
{
  transition: 0.15s ease-in-out all;
  background-color: black;
  color: white
}

.div-blog {
  max-width: 650px;
  min-width: 200px;
}

