body {
    margin: 0;
    font-family: 'Monoton';
    color: #B1B1B1;
    background-color: #606060FF;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #606060FF, #F4DF4EFF, #606060FF);
    z-index: 1000;
}

.container {
    max-width: 960px;
    font-family: 'Monoton';
    margin: 0 auto;
    padding: 20px;
    align-items: auto;
}

.navbar {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

.navbar-links {
    display: flex;
    align-items: center;
}

.button {
    font-family: 'Monoton';
    position: relative;
    color: #0A0708;
    background: transparent;
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    transition: color 0.3s ease-out, box-shadow 1s ease-out, text-shadow 1s ease-out;
}

.button:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #058c8cdc;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease-out;
    z-index: -1;
}

.button:hover:before {
    transform: scaleX(1);
}

.button:hover {
    color: #0A0708;
    box-shadow: 0 0 10px #060606dc;
    text-shadow: 0 0 10px #040404dc;
}

.about-me{
    text-align: left;
    background: linear-gradient(90deg, #0a070800, rgba(96, 96, 96, 0), #0a070800);
    margin-top: 15vh;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 20px;
    box-shadow: 0px 0px 0px 0px #0a0708c0;
    transition: box-shadow 1s ease-out;
    
}
.contact-me {
    text-align: left;
    background: linear-gradient(90deg, #0a070800, rgba(96, 96, 96, 0), #0a070800);
    margin-top: 5vh;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 20px;
    box-shadow: 0px 0px 0px 0px #0a0708c0;
    transition: box-shadow 1s ease-out;
    
}

.about-me:hover {
    box-shadow: 0px 10px 100px 20px #0a0708c0;
}

.contact-me p {
    color: #0A0708;
    margin-bottom: 2vh;
}

.contact-me label {
    display: block;
    margin-bottom: 2vh;
    color: #0A0708;
}

.contact-me input[type="text"],
.contact-me input[type="email"],
.contact-me textarea {
    width: calc(100% - 20px); /* Adjust width */
    padding: 15px;
    margin-bottom: 5vh;
    border: none;
    border-radius: 10px;
    background-color: #FFFFFF;
    display: block; /* Display inputs on separate lines */
}

.contact-me textarea {
    width: calc(100% - 20px); /* Adjust width */
    resize: vertical;
}
a {
    text-decoration: none;
  }
