body {
    overflow: hidden;
    height: 100vh;
    font-size: 28px;
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(218, 23%, 16%);
    color: hsl(193, 38%, 86%);
}

div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

article {
    background: hsl(217, 19%, 24%);
    border-radius: 2rem;
    height: 300px;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    overflow: hidden;
    padding: 20px 20px 2em;
}

button {
    bottom: -1.5rem;
    height: 50px;
    padding: 1em;
    border-radius: 50%;
    border: 1em transparent;
    background: hsl(150, 100%, 66%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

button:hover {
    box-shadow: 0 0 1em 0.125rem hsl(150, 100%, 66%);
}

button:disabled {
    background: #888888;
    box-shadow: none;
}

@media screen and (max-width: 768px) {

    article p {
        font-size: 0.7em;
        width: 100%;
    }
}

@media screen and (max-width: 640px){
    article {
        width: 80vw;
    }
    article p {
        width: 100%;
    }
    article > svg {
        width: 30%;
    }
}


































