body, html {
    margin: 0;
    padding: 0;
}

.arial-rm {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.CONTENT {
    width: 100%;
    height: 100vh;
    background-color: white;
}

.NAVBAR {
    width: 100%;
    background-color: white;
    height: 50px;
    align-items: center;
    display: flex;
    box-sizing: border-box;
    padding: 5px;
    border-bottom: 0.5px solid rgb(205, 205, 205);
    justify-content: center;
}

.opts {
    width: 50%;
}

.other-btns {
    width: 50%;
    display: flex;
    justify-content: end;
    box-sizing: border-box;
    padding: 5px;
    gap: 10px;
}

.logo {
    width: 35px;
    height: 35px;
}

.zINT {
    color: black;
    outline: none;
    text-decoration: none;
}

.login {
    width: 85px;
    height: 35px;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    background-color: black;
    color: white;  
    border-style: solid; 
    transition: opacity 0.25s;
}

.login:hover {
    opacity: 0.7;
}

.signup:hover {
    background-color: rgb(232, 232, 232);
}

.signup {
    width: 85px;
    height: 35px;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    background-color: white;
    border-style: solid;
    transition: background-color 0.25s;
}

.M-CONTENT {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
    gap: 20px;
    overflow-y: auto;
}

.SLOGAN {
    width: 95%;
    height: 500px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.COMP_DESC {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 50px;
}

.what-can-z-do-for-you {
    font-size: 35px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: lighter;
}

.prompts {  
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;

}

.prompts-track {
    display: inline-flex;
    animation: scroll 20s linear infinite;
    height: 100%;
    gap: 10px;
    padding: 5px;
    box-sizing: border-box; align-items: center;

}

.prompts-track-2 {
    display: inline-flex;
    animation: scrollright 20s linear infinite;
    height: 100%;
    gap: 10px;
    padding: 5px;
    box-sizing: border-box; align-items: center;

}

.prompt {
    width: 200px; 
    border-style: solid;
    height: 90%;
    border-radius: 10px;
    align-content: center;
    justify-content: center;
    background-color: rgb(232, 232, 232);
    border-style: none;
    cursor: pointer;
    text-overflow: ellipsis;
    transition: background-color 0.1s;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 20px;
    flex: 0 0 auto;
    min-width: 200px;
}

.prompt:hover {
    background-color: rgb(204, 204, 204);
}

.prompt_desc {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    text-align: left;
}

.anmt-fade-load{
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.5s ease-out forwards;
}

.sandbox-container {
    width: 90%;
    display: flex;
    gap: 20px;
}

.sandbox {
    width: 70%;
    border: 1px solid rgb(205, 205, 205);
    height: 500px;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
}

.right {
    width: 30%;
    border: 1px solid rgb(205, 205, 205);
    border-radius: 50px;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.conns {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background-color: black;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: medium;
    border-style: none;
    cursor: pointer;

    transition: opacity 0.25s;
}

.conns:hover {
    opacity: 0.8;
}

.chatbox-ui {
    width: 70%;
    height: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-sizing: border-box;
    padding: 30px;
}

.menubar-ui {
    width: 30%;
    background-color: rgb(232, 232, 232);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.zInt-mini {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 25px;
}

.main-chat-mini {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.send-message-ui {
    width: 100%;
    height: 60px;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.get-started {
    height: 45px;
    width: 150px;
    border-radius: 10px;
    border: 0px;
    cursor: pointer;
    background-color: black;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: medium;
}

.menubar-btn {
    height: 45px;
    width: 200px;
    border-radius: 10px;
    border: 0px;
    cursor: pointer;
    background-color: black;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: medium;
}


.get-started:hover {
    opacity: 0.7;
}

.m1 {
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: end;
    display: flex;
    
}

.message {
    width: 300px;
    background-color: rgb(232, 232, 232);
    height: 50px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-content: center;
}

.contact {
    width: 100%;
    height: 50px;
    background-color: black;
    display: flex;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    align-items: center;
    gap: 10px;
    text-overflow: ellipsis;
}

.contactv2 {
    width: 100%;
    height: 50px;
    background-color: black;
    display: flex;
    color: white;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    align-items: center;
    gap: 10px;
    text-overflow: ellipsis;
}

.tf-ful {
    width: 100%;
    height: 50%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    object-fit: contain;
}

.contactv3 {
    width: 100%;
    height: 50px;
    background-color: black;
    display: flex;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: white;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    align-items: center;
    gap: 10px;
    text-overflow: ellipsis;
}

.contact:hover {
    opacity: 0.7;
    
}

.contactv2:hover {
    opacity: 0.7;
}

.contactv3:hover {
    opacity: 0.7;
}

.pfp {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgb(232, 232, 232);
    text-align: center;
    align-content: center;
    justify-content: center;
    color: black;
}

.message2 {
    width: 100%;
    /*background-color: rgb(232, 232, 232);*/
    border-top: 1px solid rgb(232, 232, 232);
    border-bottom: 2px solid rgb(232, 232, 232);

    height: 200px;
    border-radius: 10px;
    text-align: start;
    justify-content: center;
    align-content: center;
    box-sizing: border-box;
    padding: 20px;

}


@keyframes scroll{
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%) } 
}

@keyframes scrollright{
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0) } 
}


@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1100px) {
    .sandbox-container {
        display: flex;
        flex-direction: column;
    }

    .sandbox {
        width: 100%;
    }

    .right {
        width: 100%;
    }

    .message2 {
        font-size: 10px;
    }

    .menubar-btn {
        width: 70px;
        font-size: 10px;
    }

    .contactv2 {
        font-size: 10px;
    }

    .contact {
        font-size: 10px;
    }

    .contactv3 {
        font-size: 10px;
    }

    .zInt-mini {
        font-size: 20px;
    }
}


@media (max-width: 500px) {
    .sandbox {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
    }
}