/* CSS Document */

.just-cont * {
  margin: 0;
}
.just-cont {
  display: grid;
  grid-template-columns: auto auto auto; 
  grid-template-areas: "u u ."". l l";
  width: 75%;/* to stop writing over image */
  justify-self: center;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 900;
}
.justTop {
  grid-area: u;
  width: fit-content;
}
.justBottom {
  grid-area: l;
  width: fit-content;
  text-align: right;
  color: var(--colLogoTag);
}
#head-just-cont {
  position: absolute;
  top: 25vh;
  left: 2rem;
}
#head-just-cont .justTop {
  color: white;
}

#head-just-cont {
    position: absolute;
    top: 25vh;
    left: 2rem;
}  

@media (min-width: 1300px){
	.DTfont5rem {
		font-size: 5rem;
	}
}



