:root {
    --background-color: #0e0e0e;
    --secondary-color: #121212;
    --hover-color: #1A1A1A;
    --accent-color: #0456ee;
    --primary-text: #ffffff;
    --secondary-text: #9ca3af;
    --accent-text: #55fff5;
}



.company-container {
    width: 100%;

    position: relative;
    z-index: 0;

    top: 20vh;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;

    padding-bottom: 3rem;
}
.company-card {
    background-color: var(--secondary-color);

    z-index: 1;

    width: 280px;

    position: relative;

    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    transition: all ease-in-out .10s;
    text-decoration: none;
}
.company-card:hover {
    background-color: var(--hover-color);
    transition: all ease-in-out .10s;
}


.logo {
      width: 100%;
      height: auto;

      z-index: 2;
}
.name {
    font-size: 23px;
    height: 64px;
    align-content: center;
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: center;

    z-index: 2;

    color: var(--primary-text);
}
.creator-name {
    font-size: 20px;
    text-align: center;
    
    color: var(--secondary-text);

    z-index: 2;
}
.creator-head {
    margin-top: 8px;
    width: 5vh;
}