@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");

:root {
  --blue: hsl(246, 80%, 60%);
  --light-reds: hsl(15, 100%, 70%);
  --soft-blue: hsl(195, 74%, 62%);
  --light-red: hsl(348, 100%, 68%);
  --violet: hsl(264, 64%, 52%);
  --soft-orange: hsl(43, 84%, 65%);
  --very-dark-blue: hsl(226, 43%, 10%);
  --dark-blue: hsl(235, 46%, 20%);
  --desaturated-blue: hsl(235, 45%, 61%);
  --pale-blue: hsl(236, 100%, 87%);
}
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Rubik;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--very-dark-blue);
}
.full-container {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.user-container {
  grid-area: 1 / 1 / 3 / 2;
  background-color: var(--dark-blue);
  border-radius: 12px;
  width: 220px;
}
.inner-container {
  margin-top: 40px;
  z-index: -3;
  width: 100%;
}
.container {
  width: 220px;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  cursor: pointer !important;
}
.work {
  background-color: var(--light-reds);
  position: relative;
  border-radius: 12px;
  z-index: 1;
}
.play {
  background-color: var(--soft-blue);
  position: relative;
  border-radius: 12px;
  z-index: 1;
}
.study {
  background-color: var(--light-red);
  position: relative;
  border-radius: 12px;
  z-index: 1;
}
.exercise {
  background-color: hsl(145, 58%, 55%);
  position: relative;
  border-radius: 12px;
  z-index: 1;
}
.social {
  background-color: var(--violet);
  position: relative;
  border-radius: 12px;
  z-index: 1;
}
.self-care {
  background-color: var(--soft-orange);
  position: relative;
  border-radius: 12px;
  z-index: 1;
}
.img-display {
  position: absolute;
  padding-right: 10px;
  z-index: -1;
  height: 70px;
}
.user {
  background-color: var(--blue);
  border-radius: 12px;
  padding: 30px;
}
.img-container img {
  height: 60px;
  width: 60px;
  border: 3px solid white;
  border-radius: 50%;
  margin-bottom: 20px;
}
.report {
  color: var(--pale-blue);
  font-size: 12px;
}
.user-name {
  font-size: 30px;
  color: white;
  font-weight: 100;
}
.action {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.actions {
  font-size: 16px;
  color: var(--pale-blue);
  padding-left: 30px;
  cursor: pointer;
}
.actions:hover{
    color: white;
    transition: .2s ease;
}
.inner-container {
  background-color: var(--dark-blue);
  border-radius: 12px;
  padding: 30px;
  z-index: 2;
  line-height: 2px;
}
.inner-container:hover{
    background-color: rgb(53, 53, 116);
    transition: .3s ease;
    
}
.display {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.actions-inner {
  color: white;
  font-size: 16px;
}
.hours {
  font-size: 40px;
  color: white;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
@media(max-width: 1068px){
    body{
        height: 100%;
    }
    .full-container{
        display: flex;
        flex-direction: column;
    }
    .content{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .hours{
        font-size: 23px;
        font-weight: 100;
    }
    .user-container{
        height: 180px;
        width: 300px;
        display: flex;
        flex-direction: column;
        background-color: var(--dark-blue);
    }
    .user-name{
        font-size: 20px;
    }
    .img-container img{
        margin-top: 12px;
    }
    .user{
        display: flex;
        justify-content: space-between;
        align-items: center;
        line-height: 8px;
        height: 60px;
    }
    .action-display{
        display: flex;
        justify-content: space-around;
    }
    .actions{
        padding: 0;
    }
    .container{
        height: 160px;
        width: 300px;
    }
}
