html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Styles for the header */
header {
    color: #258cfb;
    padding: 20px;
    text-align: center;
}

/* Styles for the main content */
.container {
    justify-content: center;
    max-width: 1000px;
    padding: 20px;
}

h1 {
    background-color: #2c3e50;
    color: #fff;
    font-size: 20px;
    margin: 3px;
}

h2 {
}

p {
    font-size: 18px;
}

.btn {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1111ff;
    color: #fff;

}

/* Custom styles for paper-like appearance */
.paper-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 20px;
    max-width: 800px; /* adjust the max-width as needed */
    margin: auto; /* center horizontally */
    margin-top: 120px; /* adjust top margin for vertical positioning */
}

@media (max-width: 768px) {
    /* Adjustments for smaller screens */
    .paper-container {
        margin-top: 50px; /* adjust top margin for vertical positioning */
    }
}

/* Custom style to simulate <br/> */
.br-item {
    margin-top: 80px;
}