/* GLOBAL */

:root {
  --bg-body: hsl(0, 0%, 8%);
  --bg-body2: hsl(0, 0%, 14%);
  --accent: hsl(153, 71%, 59%);
  --text1: hsl(0, 0%, 100%);
  --text2: hsl(0, 0%, 85%);
  --invalid: hsl(7, 100%, 68%);
  --codeblockbg: hsl(222, 16%, 28%);
  --codeblocktext: hsl(0, 0%, 100%);
  --codeBorderRadius: .625rem;
  /*10px*/
  --fs-12: .75rem;
  --fs-14: .875rem;
  --fs-18: 1.125rem;
  --fs-88: 5.5rem;
  --fs-72: 4.5rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-36: 2.25rem;
  --fs-32: 2rem;
  --fs-24: 1.5rem;
  --fs-20: 1.25rem;
  --heading-lvl-1: clamp( 36px, 2.25rem + ((1vw - 7.68px) * 2.163), 54px);
  --heading-lvl-2: clamp( 24px, 1.5rem + ((1vw - 7.68px) * 1.442), 36px );
  --heading-lvl-3: clamp( 20px, 1.25rem + ((1vw - 7.68px) * 1.081), 30px );
  --container: 69.375rem;
  --transition: 250ms ease-in-out;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  text-wrap: wrap;
  line-break: anywhere;
}

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

body,
input,
textarea,
button {
  font-family: 'Space Grotesk', sans-serif;
}

body {
  margin: 0;
  background-color: var(--bg-body);
  color: var(--text1);
  font-size: var(--fs-18);
  line-height: 1.56;
}

.bg-less-dark {
  background-color: var(--bg-body2);
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

.header-xl {
  font-size: 2.2rem;
  font-size: clamp(2rem, 0.4rem + 7.68vw, 4.85rem);
  letter-spacing: -0.028em;
  line-height: 1.1;
}

p {
  font-size: 1rem;
  font-size: clamp(1rem, 0.79rem + 0.89vw, 1.125rem);
  line-height: 1.5;
  color: var(--text2);
}

a {
  transition: color var(--transition);
  text-decoration: none;
  color: var(--text1);
}

a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

input:invalid,
textarea:invalid {
  outline-color: var(--invalid);
}

a.underline,
button {
  display: inline-block;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.143em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text1);
  text-decoration: none;
  background-image: linear-gradient(to right,
      var(--accent) 75%,
      var(--accent) 75%);
  background-position: 0 2.1em;
  background-repeat: repeat-x;
  background-size: 8px 2px;
}

a:hover {
  color: var(--accent);
}

img,
svg {
  display: block;
}

hr.h__line {
  border-color: var(--accent);
  margin-bottom: 30px;
}

.w-full{
	width:100%;
}

.h-300{
	height:300px;
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wrapper {
  width: calc(100% - 2rem);
  max-width: var(--container);
  margin-inline: auto;
}



.header-wrapper{
	  flex-direction:column;
	  display: flex;

    justify-content: space-between;
    align-items: center;
}


ul.private-admin-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}


ul.private-admin-menu a {
    font-weight:400;
}

.mb-0{
  margin-bottom: 0px !important;
}

.pt-0{
  padding-top: 0px !important;
}

/* 600px */
@media (min-width: 37.5em) {
  .wrapper {
    width: calc(100% - 3.75rem);
	      flex-direction:row;
	}
	
	.header-wrapper {
	      flex-direction:row;
	}
	
}

/* UTILITY */

.bottom-border {
  border-bottom: 1px solid var(--text2);
}

/* HEADER */

.header {
  position: relative;
  z-index: 1;
  margin-block-start: 20px;
}

.header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 20px 25px;
}

.header-menu-container{
  display: none;
  gap: 20px 25px;
}

.header-menu-container svg.search-icon{
  cursor: pointer;
}

.header-menu-container svg.search-icon path{
  fill: var(--accent);
}

.header-menu-container #menu-header-menu{
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 20px 25px;
}

.header-menu-container #menu-header-menu li{
  list-style: none ;
}

.header__mobile_nav-items #menu-header-menu li a{
  display: block;
}

.header-menu-container + .divider{
  display: none;
  height: 20px;
  border-right: 1px solid #fff;
}



.header__home {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.02rem + 2.04vw, 2rem);
  line-height: 1;
  color: var(--text1);
  text-decoration: none;
  flex: 1 0 100%;
}

.header__social>svg>path {
  transition: fill var(--transition);
}

.header__social:hover>svg>path {
  fill: var(--accent);
}



.header__mobile_nav {
  position: absolute;
  right: 0;
  top: -20px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
  
.header__mobile_nav span.mobile_nav_icon svg path {
    fill:var(--accent);
} 

[data-hidden="true"] {
  display: none;
}

.header__mobile_nav-items {
  padding: 10px;
  width: calc(100% - 44px);
  background: var(--bg-body);
  opacity: 0.9;
  position: fixed;
  top: 0;
  height: 100vh;
}


@media (min-width: 37.5em) {
  .header {
    margin-block-start: 30px;
    /* margin-block-end: 90px; */
  }

  .header__nav {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 32px;
  }

  .header__home {
    flex: 0 1 auto;
    margin-inline-end: auto;
  }

  .header-menu-container{
    display: flex;
  }

  .header-menu-container + .divider{
    display: block;
  }
}

@media (min-width: 62.5em) {
  .home .header {
    margin-block-start: 40px;
    margin-block-end: 127px;
  }

  .header {
    margin-block-start: 60px;
    margin-block-end: 60px;
  }

}

/*  HERO */

.hero__wrapper {
  padding-bottom: 80px;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 174px;
  height: auto;
}

.hero__rings {
  position: absolute;
  right: 50%;
  top: 130px;
  /* 8.125rem; */
  z-index: -1;
  /* width: 33.125rem; */
  height: auto;
}

.hero__circle {
  position: relative;
  top: 171px;
  margin-bottom: -129px;
  translate: calc(100vw - 64px - 16px);
}

.hero__text {
  position: relative;
  text-align: center;
  margin-block-start: 335px;
}

.hero__headline {
	margin-block-end: 24px;
	line-break: auto;
}

.hero__headline>br {
  display: none;
}

.hero__headline.header-xl * {
	line-break: initial;
}

h1>span {
  background-image: linear-gradient(to right,
      var(--accent) 75%,
      var(--accent) 75%);
  background-position: 0 1.18em;
  background-repeat: repeat-x;
  background-size: 8px 4px;
}

.hero__description {
	margin-block-end: 24px;
	line-break: auto;
}

@media (min-width: 37.5em) {
  .hero {
    position: relative;
    margin-block-start: -62px;
  }

  .hero__wrapper {
    padding-bottom: 60px;
  }

  .hero__content {
    display: flex;
    align-items: center;
  }

  .hero__content picture {
    order: 2;
  }

  .hero__image {
    position: relative;
    width: 42vw;
    max-width: 445px;
    /* width: 322px; */
    height: auto;
    left: auto;
    right: 0;
    translate: 0;
  }

  .hero__rings {
    top: 90px;
    right: auto;
    left: 0;
    translate: -50%;
  }

  .hero__circle {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 190px;
    translate: 50%;
    z-index: 1;
  }

  .hero__text {
    /* width: 62vw; */
    margin-block-start: 90px;
    margin-right: -30px;
    flex: 1 0 58vw;
    text-align: left;
    z-index: 1;
  }

  .hero__headline {
    margin-block-end: 60px;
  }

  .hero__headline>br {
    display: inline-block;
  }

  .hero__description {
    /* width: 70%; */
    margin-block-end: 34px;
  }
}

@media (min-width: 62.5em) {
  .hero {
    margin-block-start: 0px;
  }

  .hero__wrapper {
    position: relative;
    padding-bottom: 100px;
  }

  .hero__content {
    align-items: flex-start;
  }

  .hero__content picture {
    margin-left: -80px;
  }

  .hero__image {
    margin-block-start: -199px;
  }

  .hero__rings {
    top: 0px;
    translate: -50% -50%;
  }

  .hero__circle {
    top: 322px;
    right: 445px;
  }

  .hero__text {
    margin-block-start: 0;
    margin-right: 0;
    flex: 1;
  }

  .hero__headline {
    margin-block-end: 43px;
  }

  .hero__headline>br {
    display: none;
  }

  .hero__description {
    width: 38ch;
    margin-block-end: 66px;
  }
}

/* BLOGS */

.do-u-know{
  padding: 10px;
  background: #005A5A;
  border-radius: 0px !important;
  position:relative;
  margin: 20px 0px;
} 

.do-u-know:before{
  content: "Do You Know?";
  position: absolute;
  background: #141414;
  padding: 1px 10px;
}

.do-u-know .wp-block-group__inner-container {
  border: 4px dotted var(--accent);
  padding: 10px;
  padding-top:30px;
}

.do-u-know p{
  margin: 0;
  font-size: 16px;
}

.blogs__wrapper {
  padding-block: 140px;
}

.blogs__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.blog_date {
  font-size: var(--fs-12);
  padding-bottom: 10px;
}

.blogs__headline {
  margin: 0;
}

.blogs__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 70px 0px;
}

.blog__item {
  background-color: var(--bg-body2);
  padding: 25px;
  position: relative;
}

.blog__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0px;
  list-style: none;
  font-size: var(--fs-12)
}



.blog__tags li a {
  color: var(--accent);
  list-style: none;
  text-decoration: none;
  text-transform: uppercase;
}



.blog__link {
  position: absolute;
  bottom: 0;
  right: 0;
}

.page-numbers.current {
	text-decoration: underline;
	color: var(--accent);
}

pre[class*=language-] {
    margin-bottom:30px !important;
}

.wp-block-group.note-section {
	border-left: 4px solid var(--accent);
	border-radius: 0px !important;
	padding: 0;
	margin-bottom:30px;
}

code {
  font-family: Consolas,"courier new";
  color: var(--accent);
  background-color: #473e3e;
  padding: 2px;
  font-size: 16px;
}


/* pre[class*=language-]{
    position: relative;
}

pre.wp-block-code.language-js::before {
    content: 'JavaScript';
  
}

pre[class*=language-]::before{
     position:absolute;
    top: -1px;
    right: -1px;
    font-size:12px;
    padding:5px;
    background:#000;
    color:#fff;
}


pre.wp-block-code.language-php::before {
    content: 'PHP';
} */


@media (min-width: 37.5em) {
	.wp-block-group__inner-container {
	  padding: 30px;
	}

	
  .blog__tags li:first-child {
    list-style: none;
  }

  .blog__tags {
    gap: 30px;
    list-style: circle;
  }



}


/* SKILLS */

.skills {
  position: relative;
}

.skills__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-block: 40px;
}

.skills__item {
  text-align: center;
}

.skills__title {
  font-size: 2rem;
  font-size: clamp(2rem, 0.33rem + 7.11vw, 3rem);
  line-height: 1.17;
  margin-block-end: 2px;
}

.skills__description {
  margin-block-end: 0;
}

.skills__rings {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: 0 50%;
}

@media (min-width: 37.5em) {
  .skills__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 52px 24px;
    border: none;
    padding-block: 52px 0;
  }

  .skills__item {
    text-align: left;
  }

  .skills__rings {
    translate: 40% 50%;
  }
}

@media (min-width: 62.5em) {
  .skills__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 30px;
    padding-block-start: 72px;
  }

  .skills__rings {
    translate: -40% 50%;
    left: 100%;
  }
}


/* PROJECTS */

.projects__wrapper {
  padding-block: 140px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
  text-align: center;
}

.projects__headline {
  grid-column: 1 / span 2;
  margin-block-end: 0;
}

.projects__contact {
  grid-column: 1 / span 2;
}

.projects__item {
  grid-column: 1 / span 2;
}

.projects__picture {
  display: block;
  margin-block-end: 20px;
}

.projects__image {
  width: 100%;
  height: auto;
}

.projects__name {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  margin-block-end: 7px;
}

.projects__tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-block-end: 20px;
  text-transform: uppercase;
}

.projects__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 37.5em) {
  .projects__name {
    font-size: 1.5rem;
  }

  .projects__grid {
    gap: 60px 24px;
    justify-items: start;
    text-align: left;
  }

  .projects__contact {
    justify-self: end;
  }

  .projects__item {
    grid-column: span 1;
  }

  .projects__headline,
  .projects__contact {
    grid-column: span 1;
  }

  .projects__contact {
    align-self: center;
  }

  .projects__tags,
  .projects__links {
    display: block;
  }

  .projects__tags span {
    margin-inline-end: 18px;
  }

  .projects__links a {
    margin-inline-end: 30px;
  }

  .project__links {
    display: block;
  }
}

@media (min-width: 62.5em) {
  .projects__grid {
    gap: 70px 30px;
  }

  .projects__item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .projects__picture {
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .projects__picture::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: hsl(0, 0%, 0%);
    opacity: 0;
    transition: opacity 150ms ease-in-out;
  }

  .projects__item:hover .projects__picture::after {
    opacity: 0.5;
  }

  .projects__item:hover .projects__links {
    opacity: 1;
  }

  .projects__item:focus-within .projects__links {
    opacity: 1;
  }

  .projects__item:focus-within .projects__picture::after {
    opacity: 0.5;
  }

  .projects__image {
    width: 100%;
    height: auto;
  }

  .projects__links {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: center;
    align-self: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
  }

  .projects__links:hover~.projects__picture::after {
    opacity: 0.5;
  }

  .projects__tags {
    margin-block-end: 0;
  }
}


/* CONTACT */

.contact {
  position: relative;
}

.contact__wrapper {
  padding-block: 84px;
}

.contact__headline {
  margin-block-end: var(--fs-20);
}

.contact__control {
  position: relative;
  margin-block-end: 16px;
}

.contact__control input,
.contact__control textarea {
  width: 100%;
  padding-block: 16px;
  padding-inline: 24px;
  border: none;
  border-bottom: 1px solid var(--text1);
  background: transparent;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text1);
}

.contact__control>*::placeholder {
  color: var(--text1);
  opacity: 0.5;
  text-transform: uppercase;
}

.contact__control textarea {
  margin-block-end: 32px;
}

.contact__control.align-right {
  display: flex;
  justify-content: flex-end;
}

.contact__control button {
  background-color: transparent;
  border: none;
}

.contact__invalid-icon {
  display: none;
  width: var(--fs-24);
  height: var(--fs-24);
  position: absolute;
  top: 50%;
  right: 0;
  translate: -50% -50%;
}

.contact input:focus-visible:invalid~.contact__invalid-icon,
.contact textarea:focus-visible:invalid~.contact__invalid-icon {
  display: inline-block;
}

.contact textarea:focus-visible:invalid~.contact__invalid-icon {
  top: 1.2rem;
  right: 1.5rem;
  translate: none;
}

.contact__rings {
  position: absolute;
  left: 0;
  bottom: 97px;
  translate: -75%;
}

@media (min-width: 37.5em) {
  .contact__rings {
    bottom: 47px;
    translate: -75%;
  }
}

@media (min-width: 62.5em) {
  .contact__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 27.8rem);
    justify-content: space-between;
  }

  .contact__headline {
    margin-block-end: var(--fs-36);
  }

  .contact__rings {
    translate: -40%;
  }
}

/* 999.98px */
@media (max-width: 62.49875em) {
  .contact__wrapper {
    max-width: 27.8rem;
  }

  .contact__text {
    text-align: center;
  }
}

footer {
  padding-block: 40px 60px;
}

@media (min-width: 37.5em) {
  footer {
    padding-block: 30px 40px;
  }
}

@media (min-width: 62.5em) {
  footer {
    padding-block: 47px 92px;
  }
}


/* Blog Archive Page*/

.blogs__list__wrapper,
.single_page_wrapper {
  padding-block: 80px;
}


.single_page_wrapper h1{
  font-size: var(--heading-lvl-1);
  margin-bottom: 10px;
}

.single_page_wrapper h2{
  font-size: var(--heading-lvl-2);
  margin-bottom: 10px;
}

.single_page_wrapper h3{
  font-size: var(--heading-lvl-3);
  margin-bottom: 10px;
}


.single_page_wrapper p,
.single_page_wrapper li,
.single_page_wrapper pre,
.single_page_wrapper strong,
.single_page_wrapper span {
  font-size: clamp(19px, 1.188rem + ((1vw - 7.68px) * 0.361), 22px);
  color: var(--text1);
}

.metabox * {
  font-size: var(--fs-12) !important;
}

.single_page_wrapper .wp-block-group {
  padding:10px 10px;
  border-radius:10px;
}

/*blog code block style */
pre.wp-block-code {
/*   background-color: var(--codeblockbg);
  font-size: var(--fs-14);
  padding: 1.25rem;
  border: 2px solid var(--accent); */
  border-radius: var(--codeBorderRadius) !important;
/*   color: var(--codeblocktext); */
}

.generic-content a{
	text-decoration:underline;
}

@media (min-width: 37.5em) {
  .single_page_wrapper {
    max-width: 750px;
  }
}

/*Search Page*/

.search-form{
  margin-top: 60px;
  margin-bottom: 40vh;
}

label.search_label{
  font-size: var(--heading-lvl-3);
  text-transform: capitalize;
}

.search_form_row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.searchform input[type="search"]{
  flex: 1 0 auto;
  padding: 16px;
  border: 1px solid var(--accent);
  background: var(--bg-body);
  color: var(--text1);
}

.searchform input[type="search"]:focus-visible {
  outline:none;
  outline-offset: 0;
}



input[type="submit"] {
  padding: 16px 25px;
  font-size: 16px;
  outline: none;
  border-radius: 0px;
  border: 1px solid;
  color: var(--accent);
  background: var(--bg-body);
  text-transform: capitalize;
  cursor: pointer;
}



@media screen and (max-width: 28.125em)  {
  input[type="submit"] {
    width: 100%;    
  }
}

.tag_container{
  padding: 30px 10px 20px 10px;
}

.tag_container,
.searchform{
  max-width:600px;
  background:var(--bg-body2);
  margin:auto;
}

.searchform{
  padding: 10px;
}

.searchform.no-result-page{
  margin-top: 50px;
  width: 100%;
}


.tag_container ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.tag_container ul li{
  list-style: none;
}

.tag_container ul li a{
  display: inline-block;
  min-width: 75px;
  border: 1px solid var(--accent);
  background-color: var(--codeblockbg);
  padding: 10px;
  text-align: center;
}

@media (min-width: 37.5em) { 
 
  
  .searchform{
    padding: 50px;
  }
  .tag_container{
    padding: 0px 50px 50px 50px;
  }

}


@media (min-width: 62.5em) {
  .search-form{
    margin-top: 0px;
  }
}

/* 404 page */

section.page_not_found {
  height: 75vh;
  display: grid;
  place-content: center;
}

section.page_not_found .wrapper {
  width: 100%;
}

section.page_not_found span{
  background:none;
}

/* Customize Login Screen */


.login #login_error, .login .message, .login .success {
  color: var(--bg-body);
}

.login #login_error, .login .message, .login .success {
  border-left: 4px solid var(--accent);
}

body.login .button-primary {

    display: inline-block;
    padding-bottom: 0.625rem;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.143em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text1);
    text-decoration: none;
    background-image: linear-gradient(to right,
      var(--accent) 75%,
      var(--accent) 75%);
    background-position: 0 2.1em;
    background-repeat: repeat-x;
    background-size: 8px 2px;
    background-color: transparent;
    border-color: transparent;


}

body.login .button-primary:active,
body.login .button-primary:focus,
body.login .button-primary:hover {
  background-color: transparent;
  border-color: transparent;
  background-image: linear-gradient(to right,
  var(--accent) 75%,
  var(--accent) 75%);
  background-position: 0 2.1em;
  background-repeat: repeat-x;
  background-size: 8px 2px;
}

body.login {
  background-color: var(--bg-body);
}

.login form {
  background: var(--bg-body);
}

.login h1 a {
  color: var(--text1);
  font-size: 30px;
  font-weight: 300;
  background-image: none;
  width: auto;
  height: auto;
  text-indent: 0;
}

.journal__grid {
    margin-top: 30px;
}

div#login .notice p, 
div#login .notice a {
    color: #000 !important;
}

.journal__item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    background: #000000;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    justify-content: space-between;
}

.journal__item a.title {
    margin: 0;
    font-size: 1rem;
    min-width: 100%;

}

@media (min-width:768px){
  .journal__item a.title {
    flex: 1;
    min-width: auto;
  }
}

time.journal_date {
    font-size: 12px;
    margin: 0;
    display: block;
}



.journal__item .meta-data {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.journal__item ul.term-wrapper {
  list-style: none;
  font-size: 14px;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

ul.term-wrapper li{
  padding: 0px 5px;
  border-radius: 5px;
}

section.journal-search {
  background: #000;
  border-radius: 10px;
  padding: 15px;
}

input#journal-search-input {
  width: 100%;
  height: 53px;
  padding: 15px;
  border-radius: 5px;
  overflow: hidden;
  outline: none;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.restricted-access {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.restricted-access h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
}

.restricted-access .button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.restricted-access .button:hover {
  background-color: #005177;
  color: #fff;
}