@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;600&display=swap');

body {
    animation: fadein ease .5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
    
    
    

/* symbollist */




#symbollist {
    background-color: #4A3B35;
    color: #4A3B35;  
    overflow-y: hidden;
}

#left {
    margin-right: 300px;
    display: flex;
    flex-direction: row;
    background-color: #E0D6D1;
}
/* ^ margin needs to be changed for mobile */

#categories {
    height: 100vh;
    width: 30%;
    overflow: hidden;
    border-right: 8px solid #4A3B35;
    text-align: center;
}

header {
  color: #E0D6D1;
  background-color: #4A3B35;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding-bottom: 5px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

#main {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow-y: scroll;
}

.sym {
  font-size: 1.5em;
  width: 70%;
}



