.navbar{
     display: flex;
  align-items: center;       /* Centers the logo and menu vertically */
  justify-content: space-between; /* Pushes logo to the left corner, menu to the right */
  padding: 10px 20px;}
.logo-img {
  height: 40px;              /* Forces the image to stay small */
  width: auto;               /* Keeps the image aspect ratio perfect */
  display: block;            /* Removes awkward bottom spacing under images */
  border-radius: 10px;
}
.MenuButton{
    display: inline-flex;
    align-items: center;     /* Centers text vertically */
    justify-content: center; /* Centers text horizontally */
    color: rgb(255, 0, 0);
    width: 130px;
    height: 40px;
    text-decoration: none;
    
}
.MenuButton:hover{
    scale: 1.05;
}
body{
    background-color: rgb(44, 44, 44);
    font-family:Verdana;
    text-align: center;
}
.discordlogo{
    align-items: center;
    height: 50px;
    width: auto;
    border-radius: 10px;
    padding: 10px;
    background-color: white;
}