@charset "utf-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding:0;
  width: 100%;
}

.row {
  display: table;
  width: 100%;
}

.column {
  box-sizing: border-box;
  display: table-cell;
  width: 50%;
  padding: 15px;
  color: white;
  text-align: center;
  background-color: rgb(245,129,33);
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

body {
  background-color: #ffecd2;
}

#logo {
  width: 230px;
  height: 106px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#logobox{
  width: 100%;
  background-color: rgb(245,129,33);
}

footer a:active a:visited {
  text-decoration: underline;
  color: rgb(68, 45, 29);
}

footer a:link {
  text-decoration: none;
  color: white;
}

footer a:hover {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

@media screen and (max-width:950px) {
  #logo {
    width: 200px;
    height: 76px;
  }

  footer{
    visibility:collapse;
  }
}