.link-container {
    display: flex;
    flex-direction: column; /* Stack the links vertically */
    align-items: left; /* Center-align the links */
    padding: 20px; /* Add some padding around the container */
}

.large-link {
    width: 50%;
    display: inline-block;
    padding: 20px 40px; /* Large padding for larger appearance */
    margin: 10px; /* Space out the links */
    font-size: 24px; /* Large font size */
    font-weight: bold; /* Make the text bold */
    color: #000; /* Text color */
    text-decoration: none; /* Remove underline from links */
    background-color: #f8f8f8; /* Background color for the links */
    border: 2px solid #ddd; /* Border for the links */
    border-radius: 5px; /* Rounded corners for the links */
    transition: background-color 0.3s ease; /* Transition for a hover effect */
}

.large-link:hover {
    background-color: #e9e9e9; /* Slightly darken the link on hover */
}

h1 {
    align-items: left; /* Center-align the links */
    padding-left: 40px; /* Add some padding around the container */
    padding-top: 30px;
    margin: 10px;
}

@media screen and (max-width: 700px) {
    .large-link {
        width: 100%;
    }
}