@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    min-width: 600px;
    max-width: 1300px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0b8e36;
    padding: 0px;
    left: 0;
    right: 0;
}

nav * {
    color: white;
    font-size: 20px;
}

nav .icon_container {
    display: flex;
    width: 15%;
    align-items: center;
    margin: 0px 20px;
}

nav .icon_container img{
    width: 50px;
    height: 50px;
    margin: 5px 10px;
}

.a_button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    background-color: white;
    border: 1px solid black;
    height: 30px;
    margin: 5px 20px;
    padding: 5px 30px;
    border-radius: 10px;
    transition: 0.2s;
    overflow:hidden;
    white-space:nowrap;
}

.a_button:hover {
    cursor: pointer;
    background-color: #0b8e36;
    transition: 0.2s;
}

.a_button * {
    color: #0b8e36;
}

.a_button:hover * {
    color: white;
}

.arrow {
    border: solid #0b8e36;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.a_button:hover .arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.download_icon {
    width: 20px;
    height: 20px;
    margin: 0 7px 0 0;
}

/* 
.index_container {
    display: flex;
    align-items: center;
    width: 20%;
    margin: 0px 20px;
    padding: 20px;
    
}

li {
    list-style: none;
    display: inline-block;
}

.nav_button {
    text-decoration: none;
}

.vertical_line {
    border-left: 2px solid white;
    height: 15px;
}

#home_section {
    width: 100%;
    height: 100vh;
}

.home_container {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.text_div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    margin: 0;
    padding: 5px;
}

.home_title {
    font-size: 40px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 70px;
}

.discover {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: green;
    color: white;
    border: none;
    border-radius: 30px;
    width: 30%;
    transition: 0.4s;
    height: 60px;
    cursor: pointer;
}

.discover:hover {
    background-color: red;
    transition: 0.4s;
}

.image_div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.img_home {
    width: 700px;
    height: 500px;
}

#see_more_section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work {
    font-size: 40px;
    font-weight: bold;
}

#download_section {
    width: 100%;
    height: 100vh;
}

.text_container {
    font-size: 20px;
    color: black;
    padding: 5px;
}

.note_title {
    font-size: 40px;
    font-weight: bold;
}

.download_buttons{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.text_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    border: 3px solid green;
    padding: 20px 0px;
    border-radius: 25px;
}

.windows_icon {
    width: 300px;
    height: 100px;
}

.exe_zip {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 30px;
}

.button {
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50px;
    background-color: green;
    font-weight: bold;
    width: 20%;
    padding: 10px;
    margin: 5px;
    transition: 0.4s;
    cursor: pointer;
}

.button:hover{
    background-color: red;
    transition: 0.4s;
}

.download_file {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin: 0px 10px;
}

.divisor {
    width: 5px;
    height: 1px;
}




 */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: green;
    color: white;
    height: 50px;
}