
* {
  box-sizing: border-box;
}
body, html {
  height: 100%;
  margin: 0;
  background: black;
}

body {
  font-family: monospace;
  padding: 10px;
  color: white;

}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}




.bg {
  /* The image used */
  background-image: url("imgs/BIGid.jpg");

  /* Full height */
  height: 50%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;


}

.header h1 {
  font-family: monospace;
  font-size: 50px;
  color: white;
}
.header p {
  font-family: monospace;
  font-size: 25px;
  color: white;
  font-style: italic;
}



/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 75%;
  background-color: black;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: black;
  padding-left: 20px;
}
.leftcolumnsite {
  float: left;
  width: 35%;
  background-color: transparent;
}

/* Right column */
.rightcolumnsite {
  float: left;
  width: 65%;
  height: 100%;
  background-color: transparent;
  padding-left: 20px;
}


table,th,td{

  border-collapse: collapse;
}
th,td{
  padding: 5px;
}


/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: #0c0c13;
  padding: 20px;
  margin-top: 20px;
}
.card p {
	text-align : justify;
	font-family: monospace;
	color:white;

}





/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.title{
	font-style: bold;
	font-size: 40px;
	text-align: center;
}


.butt {
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;
    outline:none;
}


/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: black;
  margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}
