@font-face {
    font-family: 'Montserrat-Medium';
    src: url('fonts/Montserrat-Medium.ttf');
}
@font-face {
    font-family: 'Montserrat-Regular';
    src: url('fonts/Montserrat-Regular.ttf');
}
@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('fonts/Montserrat-SemiBold.ttf');
}
body {
    font-family: 'Montserrat-Medium', sans-serif;
    margin: 0;
    padding: 0;
}
nav {
    background-color: white;
    color: #2A765A;
    font-family: 'Montserrat-Semibold', sans-serif;
    padding: 10px;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    list-style: none;
    display: flex;
    margin-left: auto;
    padding: 0;
}
nav ul li {
    margin: 0 40px;
}
nav ul li a {
    color: #2A765A;
    text-decoration: none;
}
section {
    padding: 100px 20px;
    min-height: 100vh;
    scroll-behavior: smooth;
    background: radial-gradient(ellipse at center, #5DCE5652, white 52%);
    color: #2A765A;
    text-align: left;
}
h1 {
    font-size: xx-large;
}
h2 {
    font-size: x-large;
}
p {
    font-size: medium;
}
/* #home {
    background: radial-gradient(ellipse at center, #5DCE5652, white 52%);
}
#about {
    background-color: #e2e2e2;
}
#services {
    background-color: #d0d0d0;
}
#contact {
    background-color: #b0b0b0;
} */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}
.logo {
    height: 40px;
    margin-right: 20px;
}
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2A765A;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: medium;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #C7EBC5;
    color: #2A765A;
}
.link {
    text-decoration: none;
    color: white;
    margin-right: 20px;
}
