@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&family=DM+Sans:wght@400;700&family=Fraunces:opsz,wght@9..144,700&family=Kumbh+Sans:wght@400;700&family=Manrope:wght@800&family=Montserrat:wght@500;700&family=Open+Sans:wght@400;700&family=Overpass:wght@400;700&family=Poppins:wght@400;500;600;700&family=Public+Sans:ital,wght@0,100;0,200;0,500;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:wght@400;700&family=Rubik:wght@300;400;500&family=Space+Mono:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(218, 23%, 16%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    width: 550px;
    height: auto;
    background-color: hsl(217, 19%, 24%);
    border-radius: 15px;
    box-shadow: 0px 0px 18px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 3rem 3rem 3.5rem 3rem;
}
img {
    content: url(./images/pattern-divider-desktop.svg)
}
@media (max-width: 375px) {
    .container {
        width: 95%;
        padding: 2rem 2rem 3rem 2rem;
    }
    img {
        content: url(./images/pattern-divider-mobile.svg);
    }
}

.svg {
    height: 20px;
    background-image: url(pattern-divider-desktop.svg);
}

p {
    font-family: 'Manrope', sans-serif;
    color: hsl(150, 100%, 66%);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

h2 {
    font-family: 'Manrope';
    color: hsl(193, 38%, 86%);
    font-size: 28px;
    text-align: center;
    margin: 2rem 0;

}

button {
    width: 70px;
    height: 70px;
    background-color: hsl(150, 100%, 66%);
    border-radius: 50%;
    position: absolute;
    border: none;
    bottom: -35px;
    right: 45%;
}
@media (max-width: 375px) {
    button{
        right: 41%;
    }
}


button:active {
    border: none;
    box-shadow: 0px 0px 15px 3px hsl(150, 100%, 66%);    
}