.topnav {
  overflow: hidden;
  background-color: #284349;
  width:100%;
  margin:auto;
}

.container-topnav {
    display: grid;
	grid-template-columns: auto auto;
	margin:auto;
	width: 100%;
}

.topnav-fixed {
    position:fixed;
	width: 100%;
    z-index: 9999;
    opacity: 0.9
}

.topnav-grid {
    display: grid;
	grid-template-columns: auto auto;
	margin:auto;
	width: 100%;
	background-color:#284349;
	font-family: Segoe UI;
    font-size: 17px;
    font-weight: 400;
	opacity:0.8;
}

.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: Segoe UI;
  font-size: 17px;
  font-weight: 400;
  float:right;
  display: block;
  }

.topnav a:hover {
  background-color: #585858;
  color: black;
}

.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

.topnav .icon {
  display: none;
}

.logotitle {
	float: left!important;
    width: 100%;
    margin: auto auto auto 20px;
}

.logotitle img{
	width:40px;
}

@media screen and (max-width: 768px) {
	.topnav a {
		font-size: 10px;
		padding:8px 10px;}
	.card p {
		font-size: 50rem;}
	.logotitle img {
		width:20px;
	}
}

/*@media screen and (max-width: 800px) {
  .topnav a:not(:nth-child(1)) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }*/