@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    width: 100vw;
}
body::-webkit-scrollbar {
    display: none;
}

/* Navbar */
.navbar_wrapper {
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid #C5C5C5;
}
.navbar_name {
    margin-left: 20px;
    font-size: 24px;
}
.navbar_options {
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.navbar_options p {
    cursor: pointer;
}

/* Button */
button {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: #82C4E0;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}
button span {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}
button:hover {
    transform: scale(1.05);
}

/* Main */
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.main .title {
    margin-top: 25px;
    font-size: 32px;
}
.main_left {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.main_left .title {
    font-size: 40px;
}
.main_left .desc {
    width: 700px;
    font-size: 16px;
}

/* Todo */
.todo {
    width: 100%;
    background-color: #82C4E0;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}
.todo_title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 24px;
}
.todo_tasks {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 70px;
    margin-top: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.todo_tasks p {
    width: auto;
}
.arrow2 {
    display: none;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}
.features_title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}
.features_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.feature {
    border: 1px solid grey;
    border-radius: 10px;
    padding-left: 90px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 90px;
    text-align: center;
    flex-direction: column;
    display: flex;
    gap: 10px;

    width: 300px;
}
.feature .title {
    font-size: 24px;
}
.bar {
    width: 100px;
    height: 5px;
    border-radius: 100vh;
    background-color: #82C4E0;
    margin-left: auto;
    margin-right: auto;
}
.footer {
    text-align: center;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* A */
a {
    text-decoration: none;
    color: currentColor;
}