/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Set a background color and text color for the body */
body {
    background-color: #f0f0f0; /* Change to your desired background color */
    font-family: Arial, sans-serif;
    color: #333; /* Change to your desired text color */
}

/* Style the header */
header {
    background-color: #0078d4; /* Change to your desired header background color */
    color: #fff; /* Change to your desired header text color */
    padding: 20px;
    text-align: center;
}

/* Style the logo in the header */
.logo img {
    max-width: 100%;
    height: auto;
}

/* Style the navigation menu in the header */
nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff; /* Change to your desired link color */
    font-weight: bold;
}

/* Style the container for the three columns */
.container {
    max-width: 1200px; /* Adjust to your desired maximum width */
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Style the individual columns */
.column {
    width: calc(33.33% - 20px); /* Adjust the column width and spacing as needed */
    background-color: #fff; /* Change to your desired column background color */
    border: 1px solid #ddd; /* Add a border if desired */
    padding: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Style the footer */
footer {
    background-color: #0078d4; /* Change to your desired footer background color */
    color: #fff; /* Change to your desired footer text color */
    text-align: center;
    padding: 20px;
}

/* Responsive Styles for Three Columns per Row */
@media screen and (max-width: 768px) {
    .column {
        width: calc(50% - 20px); /* Two columns per row on small screens */
    }
}

/* Add styles for the form */
.bookmark-form {
    max-width: 400px; /* Adjust to your desired width */
    margin: 0 auto;
    background-color: #fff; /* Change to your desired background color */
    padding: 20px;
    border: 1px solid #ddd; /* Add a border if desired */
    border-radius: 5px; /* Add rounded corners if desired */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a shadow if desired */
}

/* Style form labels */
.bookmark-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Style form inputs */
.bookmark-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Add input border if desired */
    border-radius: 3px; /* Add rounded corners if desired */
}

/* Style form submit button */
.bookmark-form input[type="submit"] {
    background-color: #0078d4; /* Change to your desired button background color */
    color: #fff; /* Change to your desired button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 3px; /* Add rounded corners if desired */
    cursor: pointer;
    font-weight: bold;
}

/* Style form submit button on hover */
.bookmark-form input[type="submit"]:hover {
    background-color: #005fba; /* Change to your desired hover background color */
}

.login-box {
    background-color: steelblue;
    color: white; /* Set the font color to white */
    padding: 20px;
    border: 1px solid #ccc;
    width: 300px;
    margin: 0 auto;
}
.link-buttons {
    margin-left: 50px; /* Adjust the margin as needed */
}
