bady {
    margin: 0;
    padding: 0;
}

.main-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    animation: uncover 2s;
}

.half-main-div {
    width: 50vw;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    text-align: center;
}

.logo {
    width: 70%; 
    height: auto;
    display: flex;
    justify-content: center;
}

#itr.half-main-div {
    width: 40vw;
}

#nvg.half-main-div {
    width: 50vw;
    justify-content: left;
}

#words.translucent-div {
    margin: 1.1%;
    width: 44.75%; 
    float: left;
}

#time.translucent-div {
    margin: 1.1%;
    width:44.75%; 
    float: left;
    animation: flip 2s;
    transform-style: preserve-3d;
}

.half-main-div.fair-div {
    margin: 0;
}

.subweb-nvg-div {
    width:30%; 
    height: 82px; 
    flex-direction: row;
}


@media (max-width: 768px) {
    .main-div {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        animation: uncover 2s;
    }

    .half-main-div {
        /* width: clamp(100px, 100%, 100%); */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    #itr.half-main-div {
        height: auto;
        width: 100vw;
    }

    #nvg.half-main-div {
        height: 40vh;
        width: 100vw;
        justify-content:space-evenly;
        margin-bottom: 20vh;
    }

    .center-div {
        width: 90%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column; 
    }
}