* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(218, 23%, 16%);
    padding-left: 5px;
    padding-right: 5px;
}

h1 {
    margin-top: 50px;
    font-size: 14px;
    color: hsl(150, 100%, 66%);
}

p {
    font-size: 28px;
    color: hsl(193, 38%, 86%);
    text-align: center;
    padding-top: 30px;
    
}

.advice-card {
    width: 540px;
    height: 332px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: hsl(217, 19%, 24%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advice-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;    
}

.pattern-divider {
    position: absolute;
    margin-top: 250px;
}

button {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 100%;
    background-color: hsl(150, 100%, 66%);
    cursor: pointer;
    margin-top: 303px;
    position: absolute;
}

button:hover {
    box-shadow: 0px 0px 30px hsl(150, 100%, 66%);
}

@media screen and (max-width: 560px) {
    .advice-card {
        height: 400px;
    }

    button {
        margin-top: 372px;
    }

    .pattern-divider {
        margin-top: 335px;
    }
}