/* home.css */

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    font-family: "Caveat", serif;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #c5dac1;
}

.nameTag {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nameTag h1 {
    font-size: 150px;
    display: flex;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 0px;
}
.nameTag img {
    max-width: 100%;
    height: auto;
    width: 100%; /* Adjust as needed */
}
.nameTag .description {
    font-size: 36px;
}
.homeMenu {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between menu items */
}

.homeMenu li {
    display: inline;
}

.homeMenu a {
    font-size: 24px;
    text-decoration: none;
    color: #333; /* Adjust for better visibility */
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.homeMenu a:hover {
    color: #fff;
}

