
/*COLOR PALETTE: https://colorhunt.co/palette/040d12183d3d5c837493b1a6 */

body {
    background-color: #1E201E;
    font-family: "Courier New", "DejaVu Sans Mono", Menlo, Consolas;
    color: #ECDFCC;
}

h1 {
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-shadow: 3px 3px #3C3D37;
}

h2 {
    font-size:50px;
    text-align:center;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 10px;
}

h3 {
    text-align: center;
}

a {
    text-align: center;
    color: #ECDFCC;
}

p {
    font-size: 15px;
    font-style: italic;
    text-align: center;
}

.column {
    float: left;
    width: 50%; /* Set both to 50% for equal widths */
    position: relative;
    text-align: center;
    box-sizing: border-box; /* Ensures borders are included in the width */
}

.column.radar {
    border-right: 2px solid #ECDFCC; /* Reduced the border width */
}

.column.caving {
    border-left: 2px solid #ECDFCC; /* Reduced the border width */
}


.column.link {
    width: 40%;
    margin-right: 4%;
    margin-left: 4%;
    margin-bottom: 10px;
    background-color: #3C3D37;
    border-radius: 8px;
    padding: 0 5px 0 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.column.link:last-child {
    margin-right: 0;
}

.column.link:hover {
    background-color: #697565;
}

.row:after {
    content: "";
    display: block;
    clear: both;
}

.lone.link {
    background-color: #3C3D37;
    border-radius: 8px;
    padding: 0 5px 10px 10px;
    width: 40%;
    margin-right: 30%;
    margin-left: 30%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.lone.link:hover {
    background-color: #697565;
}

.about-me {
    text-align: center;
    margin-top: 5px; /* Adjusts spacing below the paragraph */
    margin-bottom: 10px;
}

.about-me a {
    padding: 4px 8px; /* Makes the button smaller */
    margin: 0 auto;
    background-color: #3C3D37;
    color: #ECDFCC;
    text-decoration: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px; /* Small font size */
    display: inline-block;
}


