@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&family=Potta+One:wght@400;700&display=swap");

html {
    font-family: "Baloo Bhaijaan 2", "Potta One";
    background-color: #e8e1d9ff;
    scroll-behavior: smooth;
    color: #E9E1D8, #994930, #B88672, #829080, #385045;
    margin: 0;
    padding: 0;
    text-align: center;
    align-items: center;
}
body { 
    display: flex; 
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; 
    min-height: 100vh;
    margin: 0; 
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

header {
    background-color: #829080;
    padding: 20px 0;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    color: #E9E1D8;
    left: 0;  
    right: 0;
}

.carousel {
    margin: 0 auto;
}

.stars {
    display: flex;
    justify-content: center;
    animation: moveStars 4s linear infinite;
}

.stars span {
    margin: 0 5px;
    font-size: 60px;
    color: #E9E1D8;
}


.monkey {
    position: absolute; 
    top: 130px;
    left: 50%; 
    transform: translateX(-50%);
    width: 150px; 
    cursor: pointer; 
    transition: transform 0.3s;
    z-index: 2;
}
#monkey {
    width: 100%;
    cursor: pointer;
}


#main-box {
    box-sizing: border-box;
    margin: 200px auto 50px;
    width: 100%;
    max-width: 1800px;
    min-height: 800px;
    position: relative;
    padding: 40px;
    background-color: #E9E1D8;
    border: 10px solid #385045;
    border-radius: 10px;
    box-shadow: 10px 10px 20px #859082ff, 15px 15px 30px #859082ff;
    z-index: 1;
}

.home-title{
    text-align: center;
    margin-bottom: 40px; 
    font-size: 50px;
    font-family: "Potta One";
    color:#994930;
}
.home-title .see {
    color: #859082ff;
}


#startStopButton { 
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #B88672;
    border: 2px solid #994930;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Baloo Bhaijaan 2";
    font-size: 1.2em;
    color: #994930;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    align-items: center;
    margin: 20px auto;
    display: block;
    margin-bottom: 10px;
}
#startStopButton:hover {
    background-color: #829080;
    color: #E9E1D8;
    transform: scale(1.05);
}
#captureButton { 
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #B88672;
    border: 2px solid #994930;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Baloo Bhaijaan 2";
    font-size: 1.2em;
    color: #994930;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    align-items: center;
    margin: 20px auto;
    display: block;
}
#captureButton:hover {
    background-color: #829080;
    color: #E9E1D8;
    transform: scale(1.05);
}
@keyframes moveStars{
    from{
        transform:translateX(-100%)
    }
    to{
        transform: translateX(100%)
    }
}


#webcam-container {
    width: 640px;
    height: 480px;
    margin: 0 auto;
    padding: 0;
}

.text {
    margin: 20px 0; 
    font-size: 24px;
}

#webcam-container canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.webcam {
    margin-top: 20px;  
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    #main-box {
        margin-top: 200px;
        width: 95%;
    }

    .monkey {
        width: 120px;
    }

    .home-title {
        font-size: 40px;
    }
}