body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFF0E5; /* Change this to your desired page background color */
    color: #020659; /* Text color */
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

h1 {
    margin-bottom: 30px;
    font-size: 18px;
    color: #212529;
}

.link-box {
    background-color: #FFFFFF; /* Change this to your desired link box background color */
    border: 1px solid #262626; /* Adding a blue border around the link box */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    margin: 15px 0;
    padding: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.link-box:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(0px);
}

.link-box a {
    text-decoration: none;
    color: ; /* Link color */
    font-size: 20px;
    display: block;
    font-weight: bold;
}

.link-box a:hover {
    text-decoration: underline;
    color: #0056b3; /* Darker blue on hover */
}
