div.brands {
    background-color: white;
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
  }
  
  div.brands img {
    background-color: white;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  img:hover{
    transform: scale(1.1);
    transition: 0.5s;
    z-index: 102;
  }
  
  div.name{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: justify;
    width: 250px;
    padding: 20px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  .row {
    background-color: white;
    display: flex;
    box-shadow: 10px 10px 5px #ccc;
    -moz-box-shadow: 10px 10px 5px #ccc;
    -webkit-box-shadow: 10px 10px 5px #ccc;
    -khtml-box-shadow: 10px 10px 5px #ccc;
  }
  .column {
    background-color: white;
    flex: 33.33%;
    padding: 5px;
  }
  .spinning:hover{
    display: relative;
    justify-content: center;
    animation-name: rotate;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
  }
    @keyframes rotate {
      0% {
        transform: rotate(0);
      }
      100% {
        transform: rotate(180deg);
      }
    }
    .second{
        padding: 30px;
        font-family: 'Press Start 2P', cursive;
    }
    p{
        padding: 20px;
    }
    .changehighlight:hover{
        color: black;
        background-color: white;
    }
    
    span{
        color: red;
        letter-spacing: 6px;
        animation: glitching1 0.5s infinite;  
    }
    @keyframes glitching1 {
        0% {
          transform: none;
          opacity: 1;
        }
        50% {
          opacity: 0.75;
        }
        100% {
          transform: none;
          opacity: 1;
        }
      }

      
