body {
    background-color: #525252;
    font-family: Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
}
  
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey; 
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #00FFAF; 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #00FFAF; 
}

.navbar {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 100%;
    max-height: 50px;
    padding: 10px; 
    margin: 0 100px 0 100px;
}

.navbar a, h2 {
    text-decoration: none; 
    color: #00FFAF;
    margin-right: 10px;
    font-weight: bold;
}

.top {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    max-width: 80%;
    margin: auto;
    margin-left: 250px;
}

.info h1 {
    font-size: 72px;
    background: linear-gradient(to right, #00FFAF, #525252 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info p {
    font-size: 20px;
    color: white;
    text-align: justify;
}

.info button {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: justify;
    padding: 15px;
    background-color: #00FFAF;
    border: none;
    border-radius: 5px;
}

.ag {
    border-radius: 50%;
}
.projects {
    margin-top: 200px;
}

.projects-h1{
    text-align: center;
    font-size: 72px;
    background: linear-gradient(to right, #00FFAF, #525252 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    display: grid;
    margin: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 65%;
}
  
.card {
    background-color: #3c3c3c80;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
}
  
.placeholder {
    width: 500px;
    height: 200px;
    background-color: white;
    border-radius: 10px;
}
  
.card h1 {
    color: #00FFAF;
    font-size: 24px;
}
  
.container p {
    margin-top: 50px; 
    margin-left: -145px;
    line-height: 1.5;
    font-size: 20px;
    color: white;
}

.about-me {
    max-width: 65%;
    margin: auto;
    margin-top: 500px;
}

.about-me-h1 {
    text-align: center;
    font-size: 72px;
    background: linear-gradient(to right, #00FFAF, #525252 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-me-content {
    justify-content: space-between;
    display: flex;
}

.about-me img {
    max-width: 200px;
    border-radius: 50%;
}

.about-me h2 {
    font-size: 32px;
}

.about-me p {
    font-size: 20px;
    color: white;
}

.skills > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
}

.skill-continer {
    border: #00FFAF 3px solid;
    max-width: 200%;
    padding: 10px;
    border-radius: 10px;
}

.skill-continer h2 {
    margin-top: 5px;
}

.skill-continer img {
    max-width: 50px;
}

.contact-me {
    margin-top: 500px;
    margin-bottom: 200px;
}

.contact-me h1 {
    text-align: center;
    font-size: 72px;
    background: linear-gradient(to right, #00FFAF, #525252 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #00FFAF; /* Gray border */
    background-color: transparent !important;
    color: white;
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
  
input::placeholder {
    color: rgb(255, 255, 255);
    opacity: 1; 
}
  
/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #00FFAF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    background-color: #00c788;
}

.contact-container {
    max-width: 50%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    border: #00FFAF 2px solid;
}

label {
    color: white;
}

footer p {
    color: white;
    padding: 20px;
}

