:root {
    --width-person: 450px;
    --height-person: 900px;
}

@media (max-width: 767px) {
    /* Celulares */
    #canvas-container {
        position: relative;
        width: 100%;
        height: var(--height-person);
    }
    canvas {
        width: 100%;
        height: var(--height-person);
            position: absolute;
    top: 0;
    left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablets */
    #canvas-container {
        position: relative;
        width: var(--width-person);
        height: var(--height-person);
        
    }
    canvas {
        width: var(--width-person);
        height: var(--height-person);
            position: absolute;
    top: 0;
    left: 0;
    }
}

@media (min-width: 1024px) {
    /* Computadoras de escritorio */
    #canvas-container {
        position: relative;
        width: var(--width-person);
        height: var(--height-person);
        
    }
    canvas {
        width: var(--width-person);
        height: var(--height-person);
            position: absolute;
    top: 0;
    left: 0;
    }
}

body{
    margin: 0 auto;
}

.spam {
   color: #F6BA7D; 
}
#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px;
    align-items: flex-start;
    pointer-events: none;
    padding: 80px 40px;
    box-sizing: border-box;
}
#form-container {
    margin-top: 20px;
}
#overlay img {
    width: 110px;
}
h1{
    font-family: "Urbanist", Poppins;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 100%;
    padding: 0;
    color: #f5f5f5;
    margin: 0px;
}
p{
    font-family: "Poppins", Urbanist;
    padding: 0;
    font-size: 15px;
    color: #f5f5f5;
    opacity: 0.8;
    margin: 0px;
}
button {
    background:#F6BA7D;
    font-family: "Urbanist", Poppins;
    font-weight: 600;
    padding: 8px 18px;
    color: #222;
    border: 0;
    border-radius: 10px;
    margin: 0px;
}