@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@800&display=swap');

:root{
  /*Primary colors*/
  --light-cyan: hsl(193, 38%, 86%);
  --neon-green: hsl(150, 100%, 66%);
  /*Neutral colors*/
  --grayish-blue: hsl(217, 19%, 38%);
  --dark-grayish-blue: hsl(217, 19%, 24%);
  --dark-blue: hsl(218, 23%, 16%);
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*@media (min-width:375px){*/
  body{
    background-color: var(--dark-blue);
  font-family: 'Manrope', sans-serif;
    /*align-self: center;*/
  }
.container{
    display: flex;
    height: 80vh;
    padding: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  .advice-card-container{
    background-color: var(--dark-grayish-blue);
    border-radius: 10px;
    text-align: center;
    width: 90%;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 7px;
    padding-bottom: 30px;
  }
  
.advice-heading, #advice-id{
  display: inline-block;
}
  
.advice-heading{
    color: var(--neon-green);
    margin-bottom: 10px;
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 25px;
  }
  
.advice-text{
  font-size: 1.5em;
  color: var(--light-cyan);
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 10px;
}

.pattern-divider{
  background: url('/images/pattern-divider-mobile.svg');
  width: 100%;
  height: 30px;/**/
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 2px;
  margin-left: 2px;
  margin-bottom: 20px;
  margin-top: 5px;
}

.dice-icon{
  border-radius: 50%;
  background-color: var(--neon-green);
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 5px;
}

.dice-icon:hover{
  box-shadow: 1px 1px 50px 5px var(--neon-green);
}

.dice-icon img{
  width: 20px;
  height: 20px;
}

.attribution { 
  font-size: 11px; 
  text-align: center; 
  /*margin-top: 10px;*/
  bottom: 0px;
  color: var(--light-cyan);
}
.attribution a { 
  color: hsl(228, 45%, 44%); 
}

@media (min-width: 1440px){
  
}