html {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: #384B5EFF;
  margin: 0px 75px 20px 75px;
  overflow-x: hidden;
  color: #BCC1CAFF;
  /* max-width:fit-content; */
}

header {
  padding: 25px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position: fixed; */
  top: 0;
  left: 0px;
  right: 0px;
  z-index: 100;
  /* border-bottom: 1px solid #F2F2F2; */
}

.logo {
  width: 175px;
  height: auto;
}

.header-right {
  margin-right: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-right a {
  color: #ffffff;
  margin: 0 10px 0 10px;
  text-decoration: none;
  font-size: 14.5px;
}

.header-right a:hover {
  color: #EB6769FF;
}

.nav-container {
  position: relative;
  display: inline-block;
}

.nav-toggle {
  padding: 10px 10px;
  /* background-color: #333; */
  color: white;
  cursor: pointer;
  user-select: none;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #f9f9f9;
  min-width: 125px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.nav-item {
  color: #333 !important;
  padding: 8px 8px;
  text-decoration: none;
  display: block;
}

.nav-item:hover {
  color: #EB6769FF !important;
}

/* Show menu on hover of either toggle or menu itself */
.nav-container:hover .nav-menu {
  display: block;
}

.nav-toggle:hover {
  background-color: #EB6769FF;
  border-radius: 4px;
}

.profile-pic {
  width: 22.5px;
  height: 22.5px;
}

h1 {
  text-align: center;
}

form {
  max-width: 700px;
  margin-top: 50px;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left:auto;
}

label{
  display: block;
  margin-bottom: 5px;
  margin-top: 15px;
  /* width: 50%; */
}

#blog_title {
  width: 50%;
}

#trumbowyg-editor {
  width: 100%;
  min-height: 150px;
  padding: 10px;
  /* margin-bottom: 10px; */
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

textarea {
  background-color: #ffffff;
}

input[type="submit"] {
  background-color: #EB6769FF;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

input[type="submit"]:hover {
  background-color: #FFB84DFF;
}

#submission-message {
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;
  padding: 60px;
  background-color: #f9f9f9;
  border-radius: 5px;
  font-size: 15px;
  /* font-weight: bold; */
}

footer {
  background-color: #44475b;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 0;
}