* {
  box-sizing: border-box;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-weight: normal;
  src: url(../fonts/IBM_Plex_Sans/IBMPlexSans-Bold.ttf) format("truetype");
  src: url(../fonts/IBM_Plex_Sans/IBMPlexSans-BoldItalic.ttf) format("truetype");
  src: url(../fonts/IBM_Plex_Sans/IBMPlexSans-Italic.ttf) format("truetype");
  src: url(../fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf) format("truetype");
}
p.customfont { 
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
}

.menu {
  float: left;
  width: 20%;
  text-align: center;
}

.menu a {
  background-color: #f7f0cd;
  padding: 8px;
  margin-top: 7px;
  display: block;
  width: 100%;
  color: black;
}

.main {
  float: left;
  width: 60%;
  padding: 20px;
}

.right {
  background-color: #f7f0cd;
  float: left;
  width: 20%;
  padding: 15px;
  margin-top: 7px;
  text-align: center;
}

.bottom {
  background-color: #f7f0cd;
  float: bottom;
  width: 50%;
  padding: 15%;
  margin-top: 7px;
  text-align: center;
}
@media only screen and (max-width: 620px) {
  /* For mobile phones: */
  .menu, .main, .right, .bottom {
    width: 100%;
  }
}

.container{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
