*{
    margin: 0;
    padding: 0;
}

body{
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: hsl(218, 23%, 16%);
}

header{
    display: flex;
    justify-content: center;
    margin-bottom: 20vh;
}

main{
    width: 50%;
    margin-top: 100px;
    border-radius: 10px;
    background-color: hsl(217, 19%, 24%);
}

h1{
    text-align: center;
    color: hsl(150, 100%, 66%);
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 25px;
}

p{
    text-align: center;
    color: hsl(193, 38%, 86%);
    font-size: 28px;
    font-weight: 800;
    margin: 25px;
}

.imgContainer{
    display: flex;
    justify-content: center;
}

#imgDivider{
    width: 90%;
    margin-top: 25px;
}

#backgroundDice{
    position: relative;
    top: 27px;
    background-color: hsl(150, 100%, 66%);
    border-radius: 100%;
    width: 55px;
    height: 55px;
    margin-top: 25px;
}

#backgroundDice:hover{
    filter: drop-shadow(0 0 1rem hsl(150, 100%, 66%));
    cursor: pointer;
}

#imgDice{
    width: 40%;
    height: 40%;
    padding: 30%;
}

.attribution {
    position: absolute;
    bottom: 0;
    background-color: #333;
    width: 100%;
}

.attribution p {
     color: hsl(228, 45%, 44%); 
     font-size: 11px;
     text-align: center;
    }

@media only screen and (max-width: 700px){
    main{
        width: 75%;
        margin-top: 50px;
    }

    #imgDivider{
        content: url(./advice_generator_assets/pattern-divider-mobile.svg);
    }
}