@import url('https://fonts.googleapis.com/css?family=Berkshire+Swash&display=swap&subset=latin-ext');
*,
*::before,
*::after{box-sizing:inherit;}
a{text-decoration:none; color:inherit; cursor:pointer;}
button{background-color:transparent; color:inherit; border-width:0; padding:0; cursor:pointer;}
figure{margin:0;}
input::-moz-focus-inner {border:0; padding:0; margin:0;}
ul, ol, dd{margin:0; padding:0; list-style:none;}
h1, h2, h3, h4, h5, h6{margin:0; font-size:inherit; font-weight:inherit; font-family: 'Exo', sans-serif;}
p {margin:0;}
cite {font-style:normal;}
fieldset{border-width:0; padding:0; margin:0;}

html {
	font-size:62.5%;
  line-height: 1.7;
	height: 100%;

}

body {
	box-sizing: border-box;
	height: 100%;
  font-family: 'Exo', sans-serif;
  font-weight: 400;
}
/* NAVIGATION */

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer; }

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#7ed56f, #28b485);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: all .4s; }
  .navigation__link:link span, .navigation__link:visited span {
    margin-right: 1.5rem;
    display: inline-block; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #55c57a;
  transform: translateX(1rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%; }

.navigation__icon {
  position: relative;
  margin-top: 3.5rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #333;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -.8rem; }
  .navigation__icon::after {
    top: .8rem; }

.navigation__button:hover .navigation__icon::before {
  top: -1rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

/* TYPOGRAPHY */

.paragraph {
 font-size: 2rem;
 font-style: normal;
 font-weight: 400;
 letter-spacing: .2rem;
 line-height: 3.5rem;
 text-transform: none;
 color: #000;

}


.paragraph-white {
 font-size: 2rem;
 font-style: normal;
 font-weight: 400;
 letter-spacing: .2rem;
 line-height: 3.5rem;
 text-transform: none;
 color: #fff;

}


.paragraph-gold {
 font-size: 2rem;
 font-style: normal;
 font-weight: 400;
 letter-spacing: .2rem;
 line-height: 3.5rem;
 text-transform: none;
 color: #d4af37;

}

.w3-bar-item {
  letter-spacing: 0.2rem;
}

.paragraph:not(:last-child) {
    margin-bottom: 3rem;
}

.li {
 font-size: 2rem;
 font-style: normal;
 font-weight: 400;
 letter-spacing: .2rem;
 line-height: 3.6rem;
 text-transform: none;
 color: #000;
}

/* H1 */
.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-top:10rem;
	margin-bottom:1rem;
  }

 .heading-primary--main {
    display: block;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 1.5rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out; }

 .heading-primary--main_bold {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.5rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out; }

 .heading-primary--sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1rem;
    animation: moveInRight 1s ease-out; }


/* H2 */
.heading-secondary {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  position: relative;
  letter-spacing: .5rem;
  line-height: 4.5rem;
  margin: 0;
  color:#fff;
  transition: all .2s;
 }

 /* H2 */
 .heading-secondary-black {
   font-size: 4rem;
   text-transform: uppercase;
   font-weight: 400;
   display: inline-block;
   position: relative;
   letter-spacing: .5rem;
   line-height: 4.5rem;
   margin: 0;
   color:#000;
   transition: all .2s;
  }



#citat.h2::after {
  content: "- (Ciceron)";
  font-size:.8rem;
  display: block;
  text-align: right;
}

/* H3 */
.heading-tertiary  {
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px;
  letter-spacing: .5rem;

  }

/* H4 */
.heading-four {
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px;

  }


/* HEADER NASLOVNICA */

.header {
  height: 100vh;
  background-size: cover;
  background-image: url('../images/hero1.jpg');
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  }

  .header__logo-box {

    position: absolute;
    top: 4rem;
    left: 4rem;
    }

  .header__logo {
    height: 4rem;
    padding-top: 3px;

  }

  .en__logo-box {
    position: absolute;
    top: 4rem;
    right:12rem;
  }

  .en__logo {
    height: 4rem;
    padding-top: 3px;
  }

  .logo-footer {
    width: 30%;
  }

  .header__text-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }

  .scroll_menu_white-bg {
  background-color:rgba(255, 255, 255, 0.9);
  }



/* SEKCIJE */

/* NASLOVNICA ISPOD HEADER */
.section-about {
  background: #fff;
  padding: 8rem 8rem 8rem 8rem;
  margin-top: 0;

}

/* SEKCIJA NOVOSTI */
.section-novosti {
  background: #fafafa;
  padding: 8rem 8rem 15rem 8rem;
}

/* SEKCIJA NOVOSTI ONE */
.section-novost-one {
  padding: 10rem 10rem 15rem 10rem;
}

.section-novost-one p {
 font-size: 2rem;
 font-style: normal;
 font-weight: 400;
 letter-spacing: .2rem;
 line-height: 3.6rem;
 text-transform: none;
 color: #000;
 margin-bottom: 3rem;
}


/* SEKCIJA POVIJEST FOOTER */
.section-features {
  margin-top: 7rem;
  padding: 2rem 2rem 2rem 2rem;
  background-size: cover;
  background-image: url('../images/footer.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  height: 50rem;

  }

	.section-headers {
	  margin-top: 7rem;
	  padding: 2rem 2rem 2rem 2rem;
	  background-size: cover;
	  background-image: url('../images/footer.jpg');
	  background-repeat: no-repeat;
	  background-position: bottom;
	  height: 40rem;

	  }


/* BOTUNI */

.btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  margin-right: 2rem;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--white {
  background-color: #FFF;
  color: #000;
  letter-spacing: .1rem;
  font-weight: 400;
  margin-bottom: 0.7rem;


}
  .btn--white::after {
    background-color: #FFF; }

    .btn--green {
  background-color: #630e0e;
  color: #fff; }
  .btn--green::after {
    background-color: #630e0e; }


.btn--animated {
  animation: moveInBottom 1s ease-out .75s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  color: #000;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding: .8rem;
  font-size: 1.6rem;
  transition: all .2s;
  float: right;
  position: bottom;
  font-weight: 400;
  letter-spacing: .1rem;
  }

.btn-text:hover {
  background-color: #000;
  color: #FFF;
  border-radius: 2px;

  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0); }


  .btn-text-white:link, .btn-text-white:visited {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding: .8rem;
  font-size: 1.6rem;
  font-weight: 400;
  transition: all .2s;
  float: right;
   letter-spacing: .1rem;

  }

.btn-text-white:hover {
  background-color: #1261A0;
  color: #FFF;
  border-radius: 2px;

  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-text-white:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0); }

.btn-pritisnut{
  background: #5f6f81;
  color: white !important;
}


/* MARGINS & PADDINGS */

.u-center-text {
  text-align: center; }

.u-margin-bottom-big {
  margin-bottom: 8rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem; }

.u-margin-top-big {
  margin-bottom: 8rem; }

.u-margin-top-medium {
  margin-bottom: 4rem; }

.u-margin-top-small {
  margin-bottom: 1.5rem; }

.main-padding {
  padding: 10rem 8rem 8rem 8rem;
}

.padding-card {
  padding:2rem;
}

.novosti-padding {
  padding: 0 0 1rem 3rem;

}

/* CARD NUMBER 1 - Koristim samo neke klase*/

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  padding: 2rem;
  height: 75rem; }
  .card__side {
    height: 75rem;
    transition: all .8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15); }
    .card__side--front {
      background-color: #fff; }
    .card__side--back {
      transform: rotateY(180deg); }
      .card__side--back-1 {
        background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.85), rgba(30, 30, 30, 0.85)); }
      .card__side--back-2 {
				background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.85), rgba(30, 30, 30, 0.85)); }
      .card__side--back-3 {
				background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.85), rgba(30, 30, 30, 0.85)); }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0); }

  .card__picture {
    background-size: cover;
    height: 23rem;
    background-blend-mode: normal;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    .card__picture--1 {
      background-image:  url(../images/onama.jpg); }
    .card__picture--2 {
      background-image:  url(../images/smjestaj.jpg); }
    .card__picture--3 {
      background-image:  url(../images/blizina.jpg); }
  .card__heading {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
    position: absolute;
    top: 12rem;
    right: 2rem;
    width: 75%; }
  .card__heading-span {
    padding: 1rem 1.5rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    .card__heading-span--1 {
			background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.85), rgba(30, 30, 30, 0.85)); }
    .card__heading-span--2 {
      background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.85), rgba(40, 180, 133, 0.85)); }
    .card__heading-span--3 {
      background-image: linear-gradient(to right bottom, rgba(41, 152, 255, 0.85), rgba(86, 67, 250, 0.85)); }
  .card__details {
    padding: 3rem; }
    .card__details ul {
      list-style: none;
      width: 80%;
      margin: 0 auto; }
      .card__details ul li {
        text-align: center;
        font-size: 1.5rem;
        padding: 1rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid #eee; }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }
  .card__price-box {
    text-align: center;
    color: #d4af37;
    margin-bottom: 8rem; }
  .card__price-only {
    font-size: 1.4rem;
    text-transform: uppercase; }
  .card__price-value {
    font-size: 6rem;
    font-weight: 100; }


	.price-card{
		perspective: 150rem;
		-moz-perspective: 150rem;
		position: relative;
		padding: 2rem;
		height: 52rem;
		background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.85), rgba(30, 30, 30, 0.85));
		text-align: center;
		color: #d4af37;
	}

	.price-card2{
		perspective: 150rem;
		-moz-perspective: 150rem;
		position: relative;
		padding: 2rem;
		height: 52rem;
		background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
		text-align: center;
		color: white;
	}

	.price-card3{
		perspective: 150rem;
		-moz-perspective: 150rem;
		position: relative;
		padding: 2rem;
		height: 52rem;
		background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
		text-align: center;
		color: white;
	}


/* NOVOSTI CARD */


/* NOVOSTI SLIKA CARD */
.novosti-slika {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 2px;
}

/* NOVOSTI TEXT CARD */
.novosti-text{
  padding: 5rem;
}

/* NOVOSTI CARD NASLOVNICA I NOVOSTI */
.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: all .2s;
  min-height:63rem;
  border-bottom:.7rem solid #1261A0;
  margin-bottom: 3rem;
  position: relative;
  }

  .feature-box__icon {
    font-size: 6rem;
    margin-bottom: .5rem;
    display: inline-block;
    background-image: linear-gradient(to right, #55c57a, #28b485);
    -webkit-background-clip: text;
    color: transparent; }
  .feature-box:hover {
    transform: scale(1.15);
    box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5); }

  .feature-box__text {
    font-size: 1.7rem;
    line-height: 1.8;
    text-align: justify;
    color:#000;
    font-weight: 400;

  }

  .feature-box-link {
    position: absolute;
    position: absolute;
    bottom:  1.3rem;
    right:1rem;
    top:3;

  }

/* READ ONE NOVOSTI */

/* GLAVNA SLIKA */
.main-image {
  height: 85vh;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 7rem;
  background-image:  url(../images/hero.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%); }


/* READ ONE GALERIJA */

.rukica {
  cursor: pointer;
}


/* GALERIJA | READ ONE */
.galerija {
    position: relative;
    float: left;
    width:  100%;
    height: 30rem;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 2rem;
    border-bottom: 3px solid #000;

}



.footer-text {
 font-size: 1.6rem;
 font-style: normal;
 font-weight: 400;
 letter-spacing: .2rem;
 text-transform: none;
 color: #000;
}

.footer-ikone{
  margin-bottom: 2rem;
}

.bread{
  float: right;
  margin-top: 1rem;
  color: #fff;
  font-weight: 400;
}



/* ANIMATIONS */

  @keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }

  80% {
    transform: translateX(1rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }

  80% {
    transform: translateX(-1rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* MEDIA QUERY VEĆI TAB */

@media (max-width: 1024px){

  .section-about {
   padding: 8rem 4rem 8rem 4rem;
  }

  .section-novosti {
  background: #fafafa;
  padding: 8rem 1rem 15rem 1rem;

}

  .feature-box {
   min-height: 70rem;
 }


}

/* MEDIA QUERY TAB */

@media (max-width: 768px) {

html {
  padding:0rem;
}

.feature-box {
   min-height: 55rem;
  }

.section-novost-one {
  padding: 8rem 2rem 2rem 2rem;
}

.main-image {
  height: 30vh;
  background-position: 50% 50%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 25vh, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 25vh, 0 100%); }

.section-novost-one p {
 margin-bottom: 3rem;
 text-align: justify;
  }


}

/* MEDIA QUERY MOB */

@media (max-width:600px){

html{
   font-size:52%;
   padding: 0;
}


/* TYPOGRAPHY */

  .heading-primary--main {
  font-size: 5.2rem;
  }

  .navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 3rem;
  right: 4rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer; }

  .navigation__background {
  top: 3.4rem;
  right: 4rem;
  }


   .en__logo-box {
    position: absolute;
    top: 4rem;
    right:13rem;
    }

    .logo-footer {
    width: 50%;
  }


/* SEKCIJE */
  .section-about {
   padding: 8rem 4rem 8rem 4rem;

  }

  .section-novosti {
  background: #fafafa;
  padding: 8rem 2rem 15rem 2rem;
  }

  .section-novost-one {
  padding: 8rem 2rem 2rem 2rem;
  }

  .section-novost-one p {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: justify;
  }

  .feature-box__text {
  font-size: 2rem;
  min-height: 40rem;
  }

  .main-image {
  height: 50vh;
  background-position: 50% 50%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 45vh, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 45vh, 0 100%); }





  .novosti-padding {
  padding: 0 0 1rem 2rem;

   }

}


/* MEDIA MOB LANDSCAPE */

@media only screen and (max-width: 768px) and (orientation: landscape) {

html{
   font-size:52%;
   padding: 0;
}



  /* TYPOGRAPHY */

  .header__text-box {
  top: 30%;
  }

  .paragraph {
  font-size: 2.2rem;
  }

  .heading-primary--main {
  font-size: 5.2rem;
  }

  .btn--white {
    visibility: hidden;
    }

  .header__text-box {
   margin-top:5rem;
  }
}

.navigacija{
	background-color: #fff;
	max-width: 100%;
	line-height: 3.2;
}

.zelena{
	color: #000;
}

.granica{
	border-top: 3px solid #000;
}

.gumb{
		margin-bottom: 1rem;
		color: #fff;
}

.bordo{
	background-color: #000;
	color: white;
	padding: 20px;
}

.pisano{
	font-family: 'Berkshire Swash', cursive;
}

@media only screen and (max-width: 56.25em),  only screen and (hover: none) {
    .card {
    height: auto;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side {
    height: auto;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.card__side--back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-clip-path: polygon(0 15%,  100% 0,  100% 100%,  0% 100%);
    clip-path: polygon(0 15%,  100% 0,  100% 100%,  0% 100%);
}
.card:hover .card__side--front {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.card__details {
    padding: 1rem 3rem;
}
.card__cta {
    position: relative;
    top: 0%;
    left: 0;
    -webkit-transform: translate(0);
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
}
.card__price-box {
    margin-bottom: 3rem;
}
.card__price-value {
    font-size: 4rem;
}
