@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,400;1,800&display=swap');
/* font-family: 'Poppins', sans-serif; */

html{
    font-size: 10px;
}

h1, input, p{
    font-family: 'Poppins', sans-serif;
}

h1{
    font-size: 1.2rem;
}

input{
    font-size: 2rem;
}

body{
    width: 100vw;
    height: 100vh;
    background-color: hsl(0, 0%, 94%);
    display: grid;
    place-items: center;

}

.box-principal{
    width: 35.5rem;
    height: 50rem;
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 5rem 2rem;
    border-radius: 20px 20px 120px 20px;
    box-shadow: 0px 0px 12px -7px;
}

.box-dma{
    width: 100%;
    height: 22.27%;
    display: flex;
    justify-content: space-between;
    padding: 0 0 6rem;
}

.box-dma > section{
    width: calc(88.6% / 3);
    height: 7rem;
}

section > h1{
    padding-bottom: 0.5rem;
    color: hsl(0, 1%, 44%);
}

section > input{
    width: 100%;
    height: 83%;
    box-sizing: border-box;
    padding: 1rem;
    text-decoration: none;
    border: 1px solid hsl(0, 0%, 86%);
    border-radius: 1rem;
    color: hsl(0, 0%, 8%);
    place-content: color(hsl(0, 1%, 44%));
    cursor: pointer;
}

section > p{
    font-size: 0.7rem;
    font-weight: 400;
    font-style: italic;
    color: hsl(0, 100%, 67%);
    display: none;
    text-align: center;
    padding-top: 1rem;
}

.box-reload{
    width: 100%;
    height: 6rem;
    border-top: 1px solid hsl(0, 0%, 86%);
}

.box-reload > div{
    position: relative;
    left: 12.75rem;
    bottom: 3rem;
    background-color: hsl(259, 100%, 65%);
    width: 6rem;
    height: 6rem;
    border-radius: 3rem;
}

#send {
    background-color: hsl(259, 100%, 65%);
    width: 6rem;
    height: 6rem;
    border: none;
    border-radius: 3rem; 
    cursor: pointer;
}

img{
    position: relative;
    bottom: 6.22rem;
    max-width: 6rem;
    pointer-events:none; 
    transition: transform 0.2s ease;
}

.box-amd{
    width: 100%;
    height: auto;
}

.box-amd > p{
    font-size: 6rem;
    font-weight: 800;
    font-style: italic;
    color: hsl(0, 0%, 8%);
}

p > span {
    color: hsl(259, 100%, 65%);
}

@media (min-width: 768px) {

    html{
        font-size: 15px;
    }

    .box-principal{
        height: 47rem;
    }

    section > h1{
        padding-bottom: 1rem;
    } 

    .box-reload > div {
        display: grid;
        place-items: center;
    }

    img{
        bottom: 5.2rem;
        max-width: 7rem;
    }
}

@media (min-width: 1360px) {

    .box-principal{
        width: 45rem;
        height: 32rem;
        padding: 3rem;
    }

    .box-dma{
        width: 70%;
        padding-bottom: 4rem;
    }

    .box-dma > section{
        width: calc(88.6% / 3);
        height: 5rem;
    }

    section > h1{
        padding-bottom: 0.4rem;
    }

    section > input{
        border-radius:0.3rem;
    }

    .box-reload{
        height: 1.5rem;
    }

    .box-reload > div{
        left: 34rem;
    }

    .box-amd > p{
        font-size: 5rem; 
    }
}