    body {
        margin: 0;
    height: 100dvh;
    width: 100vw;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #152535;
    }

    .header {
    width: 100%;
    height: 5rem;
    overflow: hidden;
    position: absolute;
    top: 0;
    background: #89898940;
    color: #152535;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 0.5rem;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    z-index: 1000;
    }

    .header img {
        height: 100%;
        object-fit: contain;
    }

    .header a {
        color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    /* align-self: end; */
    /* justify-self: end; */
    position: absolute;
    right: 3rem;
    }

    .columns {
        height: 100dvh;
    display: flex;
    flex-direction: row;
    align-items: center;
    }

    .column {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.25s ease;
    background-position: center;
    }

    .logo {
    padding: 2rem;
    background: #152535db;
        background: linear-gradient(
360deg, rgba(21, 37, 53, 1) 0%, rgb(21 37 53 / 83%) 100%
100%
);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: all 0.25s ease;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    backdrop-filter: saturate(0);
    }

    .logo img {
        max-width: 20rem;
    }

    .logo p, .logo a {
        color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    text-align: center;
    display: none;
    max-width: 20rem;
    }

    .column:hover {
        flex: 3;
        
    }

    .column:hover .logo {
    height: 40%;
    width: 50%;
    border-radius: 1rem;
    backdrop-filter: blur(6px);
    background-color: #152535f5;
    backdrop-filter: saturate(1);
    }

    .column:hover .logo p, .column:hover .logo a {
        display: block;
    }

    #avbrothers .logo img{
        width: 60%;
        
    }

    #webinary {
        background-image: url("/assets/studio-1.jpg");
    }

    #avbrothers {
        background-image: url("/assets/av-background.png");
    }

    #venuetool {
        background-image: url("/assets/venuetool-bg.png");
    }

    .column img {
        width: 100%;
        object-fit: contain;
    }

    .logo a {
        margin-top: 3rem;
    font-size: 1rem;
    line-height: 1.5rem;
    background-color: #e34c15;
    padding: 0.5rem 2.5rem;
    border-radius: 0.25rem;
    
    }

            .logo a span:nth-child(1) {
            display: block;
        }

        .logo a span:nth-child(2) {
            display: none;
        }


    @media (max-width: 40rem) {
        .header {
            height: 4rem;
            padding: 1rem;
            background-color: #152535;
        }

        .columns {
    margin-top: 4rem;
    flex-direction: column;
    height: calc(100% - 4rem);
        }

        .column {
            width: 100%;
        }

        .column:hover {
            flex: 1;
        }

        .logo a, .logo p {
            display: block;
            opacity: 0.8;
        }

        .logo a {
    margin-top: 1rem;
    background: transparent;
    border: 1px solid #ffffff;

        }



        .logo {
            padding: 2rem;
    background: #152535db;
    height: 100%;
    /* background: #152535; */
    background: linear-gradient(
360deg, rgba(21, 37, 53, 1) 0%, rgb(21 37 53 / 83%) 100%
100%
);
    width: 100%;
    display: flex;
    justify-content: center;
    transition: all 0.25s ease;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    backdrop-filter: saturate(0);
        }

        .column:hover {
            flex: 1;
        }

        .column:hover .logo {
            height: 100%;
            width: 100%;
            border-radius: 0;
            backdrop-filter: none;
            background-color: transparent;
        }

        .column:hover .logo p, .column:hover .logo a {
            display: block;
        }

                    .logo a span:nth-child(1) {
            display: none;
        }

        .logo a span:nth-child(2) {
            display: block;
        }
    }