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

html, body {
    height: 100%;
	
    font-family: Georgia, "Times New Roman", serif;
    color: #1a1a1a;
    /*background-color: #f6f5f2;*/
	letter-spacing: 0.02em;
}

body {
    display: flex;
    flex-direction: column;

}



/* Header */
.site-header {
    position: relative;
    top: 0;
    left: 0;
    padding: 24px 32px;
}

.logo {
   font-family: 'Courier Prime', monospace !important;
    font-size: 30px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Main */
.lock-container {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
margin-bottom: 100px;


}

.lock-box {
    max-width: 600px;
    text-align: center;

}

.lock-box p {
    font-size: 18px;
    line-height: 1.6;

   
}

/*content*/
.content {

    display: flex;
    justify-content: center;
    padding: 24px;
    margin-bottom:100px;
    flex: 1;


}

.content-body {
    max-width: 800px;
    text-align: left;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
	}

.content ul{
  list-style-type: circle; 
  padding: 19px;            /* Removes default left padding */
  margin: 0;            /* Removes default vertical margin */ 
  font-size:18px;
  
}

/* Access Link */
.access-link {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    transition: border-color 0.2s ease, opacity 0.2s ease;

}

.access-link:hover {
    border-color: rgba(0,0,0,0.7);
    opacity: 0.7;
}

/* Footer */
.site-footer {
    
padding-bottom:24px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}

@media (max-width: 768px) {
  body {
    font-family: 'Courier Prime', monospace;
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0.02em;
  }

  .content {
    max-width: 32ch;
    margin: 0 auto;
    padding: 0 1rem;
  }

  p {
    margin-bottom: 1.2em;
  }

  strong {
    font-weight: 600;
  }
}